[][src]Enum smallbitvec::InternalStorage

pub enum InternalStorage {
    Inline(usize),
    Spilled(Box<[usize]>),
}

A typed representation of a SmallBitVec's internal storage.

The layout of the data inside both enum variants is a private implementation detail.

Variants

Inline(usize)

The internal representation of a SmallBitVec that has not spilled to a heap allocation.

Spilled(Box<[usize]>)

The contents of the heap allocation of a spilled SmallBitVec.

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]