#[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 attribute_bits: u64,
pub partition_name: [u16; 36],
}Fields§
§partition_type_guid: [u8; 16]§unique_partition_guid: [u8; 16]§starting_lba: u64§ending_lba: u64§attribute_bits: u64§partition_name: [u16; 36]Trait Implementations§
Source§impl Clone for GPTPartitionEntry
impl Clone for GPTPartitionEntry
Source§fn clone(&self) -> GPTPartitionEntry
fn clone(&self) -> GPTPartitionEntry
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 moreSource§impl Debug for GPTPartitionEntry
impl Debug for GPTPartitionEntry
impl Copy for GPTPartitionEntry
Auto Trait Implementations§
impl Freeze for GPTPartitionEntry
impl RefUnwindSafe for GPTPartitionEntry
impl Send for GPTPartitionEntry
impl Sync for GPTPartitionEntry
impl Unpin for GPTPartitionEntry
impl UnsafeUnpin 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