pub struct ZonHeader {
pub magic: u32,
pub version: u32,
pub root: u32,
/* private fields */
}Expand description
the file header for ZON files. must be 64-byte aligned to ensure the start of the data segment is also cache-line aligned.
Fields§
§magic: u32§version: u32§root: u32Implementations§
Trait Implementations§
impl Copy for ZonHeader
Auto Trait Implementations§
impl Freeze for ZonHeader
impl RefUnwindSafe for ZonHeader
impl Send for ZonHeader
impl Sync for ZonHeader
impl Unpin for ZonHeader
impl UnwindSafe for ZonHeader
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