Skip to content

Commit ec3cb64

Browse files
committed
Auto merge of #131595 - fmease:rustdoc-json-mv-obj-safe-dyn-compat, r=aDotInTheVoid
rustdoc-JSON: Rename "object safe" to "dyn compatible" ~~Blocked: Sits atop #131594. Only the last commit is relevant.~~ (rebased) Part of #130852. r? aDotInTheVoid or rustdoc
2 parents 06d261d + 2e6f3bd commit ec3cb64

File tree

4 files changed

+27
-24
lines changed

4 files changed

+27
-24
lines changed

src/librustdoc/json/conversions.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -672,12 +672,12 @@ impl FromClean<clean::Trait> for Trait {
672672
let tcx = renderer.tcx;
673673
let is_auto = trait_.is_auto(tcx);
674674
let is_unsafe = trait_.safety(tcx) == rustc_hir::Safety::Unsafe;
675-
let is_object_safe = trait_.is_dyn_compatible(tcx);
675+
let is_dyn_compatible = trait_.is_dyn_compatible(tcx);
676676
let clean::Trait { items, generics, bounds, .. } = trait_;
677677
Trait {
678678
is_auto,
679679
is_unsafe,
680-
is_object_safe,
680+
is_dyn_compatible,
681681
items: renderer.ids(items),
682682
generics: generics.into_json(renderer),
683683
bounds: bounds.into_json(renderer),

src/rustdoc-json-types/lib.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use serde::{Deserialize, Serialize};
1313
/// This integer is incremented with every breaking change to the API,
1414
/// and is returned along with the JSON blob as [`Crate::format_version`].
1515
/// Consuming code should assert that this value matches the format version(s) that it supports.
16-
pub const FORMAT_VERSION: u32 = 35;
16+
pub const FORMAT_VERSION: u32 = 36;
1717

1818
/// The root of the emitted JSON blob.
1919
///
@@ -1082,8 +1082,11 @@ pub struct Trait {
10821082
pub is_auto: bool,
10831083
/// Whether the trait is marked as `unsafe`.
10841084
pub is_unsafe: bool,
1085-
/// Whether the trait is [object safe](https://doc.rust-lang.org/reference/items/traits.html#object-safety).
1086-
pub is_object_safe: bool,
1085+
// FIXME(dyn_compat_renaming): Update the URL once the Reference is updated and hits stable.
1086+
/// Whether the trait is [dyn compatible](https://doc.rust-lang.org/reference/items/traits.html#object-safety)[^1].
1087+
///
1088+
/// [^1]: Formerly known as "object safe".
1089+
pub is_dyn_compatible: bool,
10871090
/// Associated [`Item`]s that can/must be implemented by the `impl` blocks.
10881091
pub items: Vec<Id>,
10891092
/// Information about the type parameters and `where` clauses of the trait.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#![no_std]
2+
3+
//@ has "$.index[*][?(@.name=='FooDynIncompatible')]"
4+
//@ is "$.index[*][?(@.name=='FooDynIncompatible')].inner.trait.is_dyn_compatible" false
5+
pub trait FooDynIncompatible {
6+
fn foo() -> Self;
7+
}
8+
9+
//@ has "$.index[*][?(@.name=='BarDynIncompatible')]"
10+
//@ is "$.index[*][?(@.name=='BarDynIncompatible')].inner.trait.is_dyn_compatible" false
11+
pub trait BarDynIncompatible<T> {
12+
fn foo(i: T);
13+
}
14+
15+
//@ has "$.index[*][?(@.name=='FooDynCompatible')]"
16+
//@ is "$.index[*][?(@.name=='FooDynCompatible')].inner.trait.is_dyn_compatible" true
17+
pub trait FooDynCompatible {
18+
fn foo(&self);
19+
}

tests/rustdoc-json/traits/is_object_safe.rs

-19
This file was deleted.

0 commit comments

Comments
 (0)