pub struct LinkedListAlloc { /* private fields */ }Expand description
Prosty linked-list allocator.
Implementations§
Trait Implementations§
Source§impl GlobalAlloc for LinkedListAlloc
impl GlobalAlloc for LinkedListAlloc
Source§unsafe fn alloc(&self, layout: Layout) -> *mut u8
unsafe fn alloc(&self, layout: Layout) -> *mut u8
Allocates memory as described by the given
layout. Read moreimpl Sync for LinkedListAlloc
Auto Trait Implementations§
impl !Freeze for LinkedListAlloc
impl !RefUnwindSafe for LinkedListAlloc
impl Send for LinkedListAlloc
impl Unpin for LinkedListAlloc
impl UnsafeUnpin for LinkedListAlloc
impl UnwindSafe for LinkedListAlloc
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more