pub struct TileHeader {
pub magic: u64,
pub capacity: u32,
pub payload_size: u32,
pub occupied: AtomicU32,
/* private fields */
}Fields§
§magic: u64§capacity: u32§payload_size: u32§occupied: AtomicU32Auto Trait Implementations§
impl !Freeze for TileHeader
impl RefUnwindSafe for TileHeader
impl Send for TileHeader
impl Sync for TileHeader
impl Unpin for TileHeader
impl UnsafeUnpin for TileHeader
impl UnwindSafe for TileHeader
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