[][src]Trait alloc_wg::alloc::BuildRealloc

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

Associated Types

type ReallocRef: ReallocRef<BuildRealloc = Self>

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

impl BuildRealloc for Global[src]

type ReallocRef = Self

impl BuildRealloc for System[src]

type ReallocRef = Self

Loading content...

Implementors

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

type ReallocRef = AbortAlloc<A::ReallocRef>

Loading content...