pub struct FileHeader {
pub signature: [u8; 8],
pub compatible_flags: u32,
pub incompatible_flags: u32,
pub state: u8,
pub header_size: u64,
pub n_entries: u64,
pub head_entry_realtime: u64,
pub tail_entry_realtime: u64,
pub head_entry_seqnum: u64,
pub tail_entry_seqnum: u64,
pub tail_entry_boot_id: [u8; 16],
pub seqnum_id: [u8; 16],
}Fields§
§signature: [u8; 8]§compatible_flags: u32§incompatible_flags: u32§state: u8§header_size: u64§n_entries: u64§head_entry_realtime: u64§tail_entry_realtime: u64§head_entry_seqnum: u64§tail_entry_seqnum: u64§tail_entry_boot_id: [u8; 16]§seqnum_id: [u8; 16]Trait 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