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.
Note that for this encoding, the discriminant and variant index of each variant coincide!
This invariant is codified as part of layout_sanity_check.
The variant untagged_variant contains a niche at an arbitrary
offset (field Variants::Multiple::tag_field of the enum).
For a variant with variant index i, such that i != untagged_variant,
the tag is set to (i - niche_variants.start).wrapping_add(niche_start)
(this is wrapping arithmetic using the type of the niche field, cf. the
tag_for_variant
query implementation).
To recover the variant index i from a tag, the above formula has to be reversed,
i.e. i = tag.wrapping_sub(niche_start) + niche_variants.start. If i ends up outside
niche_variants, the tag must have encoded the untagged_variant.
For example, Option<(usize, &T)>  is represented such that the tag for
None is the null pointer in the second tuple field, and
Some is the identity function (with a non-null reference)
and has no additional tag, i.e. the reference being non-null uniquely identifies this variant.
Other variants that are not untagged_variant and that are outside the niche_variants
range cannot be represented; they must be uninhabited.
Nonetheless, uninhabited variants can also fall into the range of niche_variants.
Fields
untagged_variant: VariantIdxniche_variants: RangeInclusive<VariantIdx>This range may contain untagged_variant or uninhabited variants;
these are then just “dead values” 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 moreSource§impl<VariantIdx, __CTX> HashStable<__CTX> for TagEncoding<VariantIdx>
 
impl<VariantIdx, __CTX> HashStable<__CTX> for TagEncoding<VariantIdx>
fn hash_stable(&self, __hcx: &mut __CTX, __hasher: &mut StableHasher)
impl<VariantIdx: Eq + Idx> Eq for TagEncoding<VariantIdx>
impl<VariantIdx: Idx> StructuralPartialEq for TagEncoding<VariantIdx>
Auto Trait Implementations§
impl<VariantIdx> DynSend for TagEncoding<VariantIdx>where
    VariantIdx: DynSend,
impl<VariantIdx> DynSync for TagEncoding<VariantIdx>where
    VariantIdx: DynSync,
impl<VariantIdx> Freeze for TagEncoding<VariantIdx>where
    VariantIdx: Freeze,
impl<VariantIdx> RefUnwindSafe for TagEncoding<VariantIdx>where
    VariantIdx: RefUnwindSafe,
impl<VariantIdx> Send for TagEncoding<VariantIdx>where
    VariantIdx: Send,
impl<VariantIdx> Sync for TagEncoding<VariantIdx>where
    VariantIdx: Sync,
impl<VariantIdx> Unpin for TagEncoding<VariantIdx>where
    VariantIdx: Unpin,
impl<VariantIdx> UnwindSafe for TagEncoding<VariantIdx>where
    VariantIdx: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
 
impl<T> Pointable for T
Source§impl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
    T: 'static,
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.