pub enum Variants<V>where
    V: Idx,
{ Single { index: V, }, Multiple { tag: Scalar, tag_encoding: TagEncoding<V>, tag_field: usize, variants: IndexVec<V, LayoutS<V>>, }, }

Variants§

§

Single

Fields

§index: V

Single enum variants, structs/tuples, unions, and all non-ADTs.

§

Multiple

Fields

§tag: Scalar
§tag_encoding: TagEncoding<V>
§tag_field: usize
§variants: IndexVec<V, LayoutS<V>>

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.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.