[][src]Trait alloc_wg::alloc::BuildDealloc

pub trait BuildDealloc: Sized {
    type DeallocRef: DeallocRef<BuildDealloc = Self>;
    unsafe fn build_dealloc_ref(
        &mut self,
        ptr: NonNull<u8>,
        layout: Layout
    ) -> Self::DeallocRef; }

Associated Types

type DeallocRef: DeallocRef<BuildDealloc = Self>

Loading content...

Required methods

unsafe fn build_dealloc_ref(
    &mut self,
    ptr: NonNull<u8>,
    layout: Layout
) -> Self::DeallocRef

Loading content...

Implementations on Foreign Types

impl BuildDealloc for Global[src]

type DeallocRef = Self

impl BuildDealloc for System[src]

type DeallocRef = Self

Loading content...

Implementors

impl<A: BuildDealloc> BuildDealloc for AbortAlloc<A>[src]

type DeallocRef = AbortAlloc<A::DeallocRef>

Loading content...