pub(crate) union SmallVecData<A: Array> {
    pub(crate) inline: ManuallyDrop<MaybeUninit<A>>,
    pub(crate) heap: (NonNull<A::Item>, usize),
}

Fields§

§inline: ManuallyDrop<MaybeUninit<A>>§heap: (NonNull<A::Item>, usize)

Implementations§

source§

impl<T, const N: usize> SmallVecData<[T; N]>

source

pub(crate) const fn from_const(inline: MaybeUninit<[T; N]>) -> Self

source§

impl<A: Array> SmallVecData<A>

source

pub(crate) unsafe fn inline(&self) -> ConstNonNull<A::Item>

source

pub(crate) unsafe fn inline_mut(&mut self) -> NonNull<A::Item>

source

pub(crate) fn from_inline(inline: MaybeUninit<A>) -> SmallVecData<A>

source

pub(crate) unsafe fn into_inline(self) -> MaybeUninit<A>

source

pub(crate) unsafe fn heap(&self) -> (ConstNonNull<A::Item>, usize)

source

pub(crate) unsafe fn heap_mut(&mut self) -> (NonNull<A::Item>, &mut usize)

source

pub(crate) fn from_heap(ptr: NonNull<A::Item>, len: usize) -> SmallVecData<A>

Trait Implementations§

Auto Trait Implementations§

§

impl<A> RefUnwindSafe for SmallVecData<A>where A: RefUnwindSafe, <A as Array>::Item: RefUnwindSafe,

§

impl<A> Unpin for SmallVecData<A>where A: Unpin,

§

impl<A> UnwindSafe for SmallVecData<A>where A: UnwindSafe, <A as Array>::Item: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.