Enum rustc_target::abi::Variants
source · [−]pub enum Variants<'a> {
Single {
index: VariantIdx,
},
Multiple {
tag: Scalar,
tag_encoding: TagEncoding,
tag_field: usize,
variants: IndexVec<VariantIdx, Layout<'a>>,
},
}
Variants
Single
Fields
index: VariantIdx
Single enum variants, structs/tuples, unions, and all non-ADTs.
Multiple
Fields
tag: Scalar
tag_encoding: TagEncoding
tag_field: usize
variants: IndexVec<VariantIdx, Layout<'a>>
Enum-likes with more than one inhabited variant: each variant comes with a discriminant (usually the same as the variant index but the user can assign explicit discriminant values). That discriminant is encoded as a tag on the machine. The layout of each variant is a struct, and they all have space reserved for the tag. For enums, the tag is the sole field of the layout.
Trait Implementations
sourceimpl<'a, __CTX> HashStable<__CTX> for Variants<'a>where
__CTX: HashStableContext,
impl<'a, __CTX> HashStable<__CTX> for Variants<'a>where
__CTX: HashStableContext,
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
sourceimpl<'a> PartialEq<Variants<'a>> for Variants<'a>
impl<'a> PartialEq<Variants<'a>> for Variants<'a>
impl<'a> Eq for Variants<'a>
impl<'a> StructuralEq for Variants<'a>
impl<'a> StructuralPartialEq for Variants<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Variants<'a>
impl<'a> Send for Variants<'a>
impl<'a> Sync for Variants<'a>
impl<'a> Unpin for Variants<'a>
impl<'a> UnwindSafe for Variants<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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: 104 bytes
Size for each variant:
Single
: 4 bytesMultiple
: 104 bytes