pub enum TagEncoding<VariantIdx: Idx> {
Direct,
Niche {
untagged_variant: VariantIdx,
niche_variants: RangeInclusive<VariantIdx>,
niche_start: u128,
},
}
Variants§
Direct
The tag directly stores the discriminant, but possibly with a smaller layout (so converting the tag to the discriminant can require sign extension).
Niche
Niche (values invalid for a type) encoding the discriminant:
Discriminant and variant index coincide.
The variant untagged_variant
contains a niche at an arbitrary
offset (field tag_field
of the enum), which for a variant with
discriminant d
is set to
(d - niche_variants.start).wrapping_add(niche_start)
(this is wrapping arithmetic using the type of the niche field).
For example, Option<(usize, &T)>
is represented such that
None
has a null pointer for the second tuple field, and
Some
is the identity function (with a non-null reference).
Other variants that are not untagged_variant
and that are outside the niche_variants
range cannot be represented; they must be uninhabited.
Fields
untagged_variant: VariantIdx
niche_variants: RangeInclusive<VariantIdx>
This range may contain untagged_variant
; that is then just a “dead value” and
not used to encode anything.
Trait Implementations§
Source§impl<VariantIdx: Clone + Idx> Clone for TagEncoding<VariantIdx>
impl<VariantIdx: Clone + Idx> Clone for TagEncoding<VariantIdx>
Source§fn clone(&self) -> TagEncoding<VariantIdx>
fn clone(&self) -> TagEncoding<VariantIdx>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more