[][src]Struct alloc_traits::Allocation

pub struct Allocation<'alloc> {
    pub ptr: NonNull<u8>,
    pub layout: NonZeroLayout,
    pub lifetime: AllocTime<'alloc>,
}

An allocation valid for a particular lifetime.

It is advisable to try and deallocate it before the end of the lifetime instead of leaking the allocation.

Fields

ptr: NonNull<u8>

A pointer to the allocated and potentially uninitialized bytes.

layout: NonZeroLayout

The allocated layout.

lifetime: AllocTime<'alloc>

The lifetime of the allocation.

Trait Implementations

impl<'alloc> Clone for Allocation<'alloc>[src]

impl<'alloc> Copy for Allocation<'alloc>[src]

impl<'alloc> Debug for Allocation<'alloc>[src]

impl<'alloc> PartialEq<Allocation<'alloc>> for Allocation<'alloc>[src]

impl<'alloc> StructuralPartialEq for Allocation<'alloc>[src]

Auto Trait Implementations

impl<'alloc> !Send for Allocation<'alloc>

impl<'alloc> !Sync for Allocation<'alloc>

impl<'alloc> Unpin for Allocation<'alloc>

Blanket Implementations

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

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

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

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.