Enum rustc_middle::ty::sty::VarianceDiagInfo [−][src]
pub enum VarianceDiagInfo<'tcx> {
None,
Mut {
kind: VarianceDiagMutKind,
ty: Ty<'tcx>,
},
}
Expand description
Extra information about why we ended up with a particular variance.
This is only used to add more information to error messages, and
has no effect on soundness. While choosing the ‘wrong’ VarianceDiagInfo
may lead to confusing notes in error messages, it will never cause
a miscompilation or unsoundness.
When in doubt, use VarianceDiagInfo::default()
Variants
No additional information - this is the default. We will not add any additional information to error messages.
We switched our variance because a type occurs inside
the generic argument of a mutable reference or pointer
(*mut T
or &mut T
). In either case, our variance
will always be Invariant
.
Fields of Mut
kind: VarianceDiagMutKind
Tracks whether we had a mutable pointer or reference, for better error messages
ty: Ty<'tcx>
The type parameter of the mutable pointer/reference
(the T
in &mut T
or *mut T
).
Implementations
Mirrors Variance::xform
- used to ‘combine’ the existing
and new VarianceDiagInfo
s when our variance changes.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl<'tcx> !RefUnwindSafe for VarianceDiagInfo<'tcx>
impl<'tcx> !Send for VarianceDiagInfo<'tcx>
impl<'tcx> !Sync for VarianceDiagInfo<'tcx>
impl<'tcx> Unpin for VarianceDiagInfo<'tcx>
impl<'tcx> !UnwindSafe for VarianceDiagInfo<'tcx>
Blanket Implementations
Mutably borrows from an owned value. 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: 16 bytes
Size for each variant:
None
: 0 bytesMut
: 15 bytes