pub struct FileHeader {Show 25 fields
pub signature: [u8; 8],
pub compatible_flags: u32,
pub incompatible_flags: u32,
pub state: u8,
pub file_id: [u8; 16],
pub machine_id: [u8; 16],
pub header_size: u64,
pub arena_size: u64,
pub data_hash_table_size: u64,
pub field_hash_table_size: u64,
pub n_objects: u64,
pub n_entries: u64,
pub head_entry_realtime: u64,
pub tail_entry_realtime: u64,
pub tail_entry_monotonic: u64,
pub head_entry_seqnum: u64,
pub tail_entry_seqnum: u64,
pub tail_entry_boot_id: [u8; 16],
pub seqnum_id: [u8; 16],
pub n_data: u64,
pub n_fields: u64,
pub n_tags: u64,
pub n_entry_arrays: u64,
pub data_hash_chain_depth: u64,
pub field_hash_chain_depth: u64,
}Fields§
§signature: [u8; 8]§compatible_flags: u32§incompatible_flags: u32§state: u8§file_id: [u8; 16]§machine_id: [u8; 16]§header_size: u64§arena_size: u64§data_hash_table_size: u64§field_hash_table_size: u64§n_objects: u64§n_entries: u64§head_entry_realtime: u64§tail_entry_realtime: u64§tail_entry_monotonic: u64§head_entry_seqnum: u64§tail_entry_seqnum: u64§tail_entry_boot_id: [u8; 16]§seqnum_id: [u8; 16]§n_data: u64§n_fields: u64§n_entry_arrays: u64§data_hash_chain_depth: u64§field_hash_chain_depth: u64Trait Implementations§
Source§impl Clone for FileHeader
impl Clone for FileHeader
Source§fn clone(&self) -> FileHeader
fn clone(&self) -> FileHeader
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FileHeader
Auto Trait Implementations§
impl Freeze for FileHeader
impl RefUnwindSafe for FileHeader
impl Send for FileHeader
impl Sync for FileHeader
impl Unpin for FileHeader
impl UnsafeUnpin for FileHeader
impl UnwindSafe for FileHeader
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