Struct rustc_middle::ty::trait_def::TraitDef [−][src]
pub struct TraitDef {
pub def_id: DefId,
pub unsafety: Unsafety,
pub paren_sugar: bool,
pub has_auto_impl: bool,
pub is_marker: bool,
pub skip_array_during_method_dispatch: bool,
pub specialization_kind: TraitSpecializationKind,
pub def_path_hash: DefPathHash,
}
Expand description
A trait’s definition with type information.
Fields
def_id: DefId
unsafety: Unsafety
paren_sugar: bool
If true
, then this trait had the #[rustc_paren_sugar]
attribute, indicating that it should be used with Foo()
sugar. This is a temporary thing – eventually any trait will
be usable with the sugar (or without it).
has_auto_impl: bool
is_marker: bool
If true
, then this trait has the #[marker]
attribute, indicating
that all its associated items have defaults that cannot be overridden,
and thus impl
s of it are allowed to overlap.
skip_array_during_method_dispatch: bool
If true
, then this trait has the #[rustc_skip_array_during_method_dispatch]
attribute, indicating that editions before 2021 should not consider this trait
during method dispatch if the receiver is an array.
specialization_kind: TraitSpecializationKind
Used to determine whether the standard library is allowed to specialize on this trait.
def_path_hash: DefPathHash
The ICH of this trait’s DefPath, cached here so it doesn’t have to be recomputed all the time.
Implementations
pub fn new(
def_id: DefId,
unsafety: Unsafety,
paren_sugar: bool,
has_auto_impl: bool,
is_marker: bool,
skip_array_during_method_dispatch: bool,
specialization_kind: TraitSpecializationKind,
def_path_hash: DefPathHash
) -> TraitDef
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TraitDef
impl UnwindSafe for TraitDef
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
impl<Ctxt, T> DepNodeParams<Ctxt> for T where
Ctxt: DepContext,
T: for<'a> HashStable<StableHashingContext<'a>> + Debug,
This method turns the parameters of a DepNodeConstructor into an opaque Fingerprint to be used in DepNode. Not all DepNodeParams support being turned into a Fingerprint (they don’t need to if the corresponding DepNode is anonymous). Read more
This method tries to recover the query key from the given DepNode
,
something which is needed when forcing DepNode
s during red-green
evaluation. The query system will only call this method if
fingerprint_style()
is not FingerprintStyle::Opaque
.
It is always valid to return None
here, in which case incremental
compilation will treat the query as having changed instead of forcing it. Read more
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes