#[repr(C)]pub struct ThreadScrapHeap {
pub heap: ScrapHeap,
pub next: *mut ThreadScrapHeap,
pub owningThread: u32,
pub pad: u32,
}
Expand description
Represents a thread-local heap in the memory manager.
Fields§
§heap: ScrapHeap
§next: *mut ThreadScrapHeap
§owningThread: u32
§pad: u32
Auto Trait Implementations§
impl Freeze for ThreadScrapHeap
impl RefUnwindSafe for ThreadScrapHeap
impl !Send for ThreadScrapHeap
impl !Sync for ThreadScrapHeap
impl Unpin for ThreadScrapHeap
impl UnwindSafe for ThreadScrapHeap
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