struct GptHeader {Show 13 fields
signature: [u8; 8],
revision: [u8; 4],
header_size: u32,
header_crc32: u32,
current_lba: u64,
backup_lba: u64,
first_usable_lba: u64,
last_usable_lba: u64,
disk_guid: Uuid,
partition_entries_lba: u64,
num_partition_entries: u32,
partition_entry_size: u32,
partition_entries_crc32: u32,
}
Fields§
§signature: [u8; 8]
§revision: [u8; 4]
§header_size: u32
§header_crc32: u32
§current_lba: u64
§backup_lba: u64
§first_usable_lba: u64
§last_usable_lba: u64
§disk_guid: Uuid
§partition_entries_lba: u64
§num_partition_entries: u32
§partition_entry_size: u32
§partition_entries_crc32: u32
Implementations§
Trait Implementations§
source§impl PartialEq for GptHeader
impl PartialEq for GptHeader
impl Eq for GptHeader
impl StructuralPartialEq for GptHeader
Auto Trait Implementations§
impl RefUnwindSafe for GptHeader
impl Send for GptHeader
impl Sync for GptHeader
impl Unpin for GptHeader
impl UnwindSafe for GptHeader
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