[][src]Struct nalloc::NAlloc

pub struct NAlloc<T> { /* fields omitted */ }

A wrapper around an allocator to turn allocation on and off.

Implementations

impl<T> NAlloc<T>[src]

pub const fn new(wrapped: T) -> NAlloc<T>[src]

Wraps an allocator.

#[must_use = "The lock must stay alive as long as no allocations are allowed."]pub fn deny<'a>(&'a self) -> AllocationLocker<'a, T>[src]

Forbid allocations.

This functions returns a lock that must be kept alive as long as no allocations are allowed.

Trait Implementations

impl<T: Debug> Debug for NAlloc<T>[src]

impl<T: GlobalAlloc> GlobalAlloc for NAlloc<T>[src]

Auto Trait Implementations

impl<T> Send for NAlloc<T> where
    T: Send

impl<T> Sync for NAlloc<T> where
    T: Sync

impl<T> Unpin for NAlloc<T> where
    T: Unpin

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.