[−][src]Struct bdwgc_alloc::Allocator

pub struct Allocator;

Methods

impl Allocator[src]

pub fn lock()[src]

pub fn unlock()[src]

pub unsafe fn initialize()[src]

pub unsafe fn register_current_thread() -> Result<(), Error>[src]

pub unsafe fn set_stack_bottom(bottom: *const u8)[src]

pub unsafe fn unregister_current_thread()[src]

Trait Implementations

impl GlobalAlloc for Allocator[src]

unsafe fn alloc_zeroed(&self, layout: Layout) -> *mut u81.28.0[src]

Behaves like alloc, but also ensures that the contents are set to zero before being returned. Read more

unsafe fn realloc(
    &self,
    ptr: *mut u8,
    layout: Layout,
    new_size: usize
) -> *mut u8
1.28.0[src]

Shrink or grow a block of memory to the given new_size. The block is described by the given ptr pointer and layout. Read more

Auto Trait Implementations

impl Send for Allocator

impl Sync for Allocator

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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