[][src]Struct linked_list_allocator::LockedHeap

pub struct LockedHeap(_);

Implementations

impl LockedHeap[src]

pub const fn empty() -> LockedHeap[src]

Creates an empty heap. All allocate calls will return None.

pub unsafe fn new(heap_bottom: usize, heap_size: usize) -> LockedHeap[src]

Creates a new heap with the given bottom and size. The bottom address must be valid and the memory in the [heap_bottom, heap_bottom + heap_size) range must not be used for anything else. This function is unsafe because it can cause undefined behavior if the given address is invalid.

Trait Implementations

impl Deref for LockedHeap[src]

type Target = Spinlock<Heap>

The resulting type after dereferencing.

impl GlobalAlloc for LockedHeap[src]

Auto Trait Implementations

impl Send for LockedHeap

impl Sync for LockedHeap

impl Unpin for LockedHeap

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.