pub struct ArenaHeader {
pub magic: u64,
pub capacity_bytes: u64,
pub used_bytes: AtomicU64,
/* private fields */
}Fields§
§magic: u64§capacity_bytes: u64§used_bytes: AtomicU64Auto Trait Implementations§
impl !Freeze for ArenaHeader
impl RefUnwindSafe for ArenaHeader
impl Send for ArenaHeader
impl Sync for ArenaHeader
impl Unpin for ArenaHeader
impl UnsafeUnpin for ArenaHeader
impl UnwindSafe for ArenaHeader
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