[][src]Trait alloc_wg::alloc::ReallocRef

pub trait ReallocRef: AllocRef {
    unsafe fn realloc(
        &mut self,
        ptr: NonNull<u8>,
        layout: NonZeroLayout,
        new_size: usize
    ) -> Result<NonNull<u8>, Self::Error>; }

Required methods

unsafe fn realloc(
    &mut self,
    ptr: NonNull<u8>,
    layout: NonZeroLayout,
    new_size: usize
) -> Result<NonNull<u8>, Self::Error>

Loading content...

Implementations on Foreign Types

impl ReallocRef for System[src]

Loading content...

Implementors

impl ReallocRef for Global[src]

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

Loading content...