#[repr(C, packed(1))]pub struct GptPartitionEntry {
pub partition_type_guid: [u8; 16],
pub unique_partition_guid: [u8; 16],
pub starting_lba: u64,
pub ending_lba: u64,
pub attributes: u64,
pub partition_name: [u16; 36],
}Fields§
§partition_type_guid: [u8; 16]§unique_partition_guid: [u8; 16]§starting_lba: u64§ending_lba: u64§attributes: u64§partition_name: [u16; 36]Implementations§
Auto Trait Implementations§
impl Freeze for GptPartitionEntry
impl RefUnwindSafe for GptPartitionEntry
impl Send for GptPartitionEntry
impl Sync for GptPartitionEntry
impl Unpin for GptPartitionEntry
impl UnwindSafe for GptPartitionEntry
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