[][src]Struct wee_alloc::WeeAlloc

pub struct WeeAlloc<'a> { /* fields omitted */ }

A wee allocator.

Safety

When used in unix environments, cannot move in memory. Typically not an issue if you're just using this as a static global allocator.

Methods

impl<'a> WeeAlloc<'a>[src]

pub const INIT: Self[src]

An initial const default construction of a WeeAlloc allocator.

This is usable for initializing statics that get set as the global allocator.

Trait Implementations

impl<'a> Sync for WeeAlloc<'a>[src]

impl GlobalAlloc for WeeAlloc<'static>[src]

unsafe default fn alloc_zeroed(&self, layout: Layout) -> *mut u8
1.28.0
[src]

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

unsafe default 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<'a> !Send for WeeAlloc<'a>

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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