[][src]Struct static_alloc::slab::UninitAllocation

pub struct UninitAllocation<'a, T = ()> {
    pub uninit: Uninit<'a, T>,
    pub level: Level,
}

Values of for some allocation including the Uninit.

See Uninit for a better picture of the potential usage of this result.

Fields

uninit: Uninit<'a, T>

Uninit pointer to the region with specified layout.

level: Level

The observed amount of consumed bytes after the allocation.

Trait Implementations

impl<'a, T: Debug> Debug for UninitAllocation<'a, T>[src]

Auto Trait Implementations

impl<'a, T> Unpin for UninitAllocation<'a, T>

impl<'a, T = ()> !Send for UninitAllocation<'a, T>

impl<'a, T = ()> !Sync for UninitAllocation<'a, T>

Blanket Implementations

impl<T> From<T> for 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> Into<U> for T where
    U: From<T>, 
[src]

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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