[][src]Struct context_allocator::adaptors::AllocatorAdaptor

#[repr(transparent)]
pub struct AllocatorAdaptor<'a, A: 'a + Allocator>(_);

Adapts an Allocator to the GlobalAlloc and Alloc traits.

Trait Implementations

impl<'a, A: 'a + Allocator> Allocator for AllocatorAdaptor<'a, A>[src]

const ZeroSizedAllocation: MemoryAddress[src]

The sentinel value used for a zero-sized allocation.

fn adapt<'a>(&'a self) -> AllocatorAdaptor<'a, Self>[src]

Adapts to a GlobalAlloc and Alloc.

fn adapt_reference<'a>(&'a self) -> &'a AllocatorAdaptor<'a, Self>[src]

Adapts a reference to a GlobalAlloc and Alloc reference.

impl<'a, A: 'a + Allocator> Deref for AllocatorAdaptor<'a, A>[src]

type Target = A

The resulting type after dereferencing.

impl<'a, A: Debug + 'a + Allocator> Debug for AllocatorAdaptor<'a, A>[src]

impl<'a, A: 'a + Allocator> GlobalAlloc for AllocatorAdaptor<'a, A>[src]

impl<'a, A: 'a + Allocator> Alloc for AllocatorAdaptor<'a, A>[src]

default fn usable_size(&self, layout: &Layout) -> (usize, usize)[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Returns bounds on the guaranteed usable size of a successful allocation created with the specified layout. Read more

default fn alloc_one<T>(&mut self) -> Result<NonNull<T>, AllocErr>[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Allocates a block suitable for holding an instance of T. Read more

unsafe default fn dealloc_one<T>(&mut self, ptr: NonNull<T>)[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Deallocates a block suitable for holding an instance of T. Read more

default fn alloc_array<T>(&mut self, n: usize) -> Result<NonNull<T>, AllocErr>[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Allocates a block suitable for holding n instances of T. Read more

unsafe default fn realloc_array<T>(
    &mut self,
    ptr: NonNull<T>,
    n_old: usize,
    n_new: usize
) -> Result<NonNull<T>, AllocErr>
[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Reallocates a block previously suitable for holding n_old instances of T, returning a block suitable for holding n_new instances of T. Read more

unsafe default fn dealloc_array<T>(
    &mut self,
    ptr: NonNull<T>,
    n: usize
) -> Result<(), AllocErr>
[src]

🔬 This is a nightly-only experimental API. (allocator_api)

Deallocates a block suitable for holding n instances of T. Read more

Auto Trait Implementations

impl<'a, A> Send for AllocatorAdaptor<'a, A> where
    A: Sync

impl<'a, A> Sync for AllocatorAdaptor<'a, A> where
    A: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.