pub struct RegionHeader {
pub magic: u32,
pub capacity: u32,
pub slot_size: u32,
pub bump_next: AtomicU64,
pub free_head: AtomicU64,
/* private fields */
}Fields§
§magic: u32§capacity: u32§slot_size: u32§bump_next: AtomicU64§free_head: AtomicU64Auto Trait Implementations§
impl !Freeze for RegionHeader
impl RefUnwindSafe for RegionHeader
impl Send for RegionHeader
impl Sync for RegionHeader
impl Unpin for RegionHeader
impl UnsafeUnpin for RegionHeader
impl UnwindSafe for RegionHeader
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