#[repr(C)]pub struct heapstack {
pub next: *mut heapstack,
pub used: usize,
}
Fields§
§next: *mut heapstack
§used: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for heapstack
impl RefUnwindSafe for heapstack
impl !Send for heapstack
impl !Sync for heapstack
impl Unpin for heapstack
impl UnwindSafe for heapstack
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