pub struct PartitionTable {
partitions: [Option<PartitionInfo>; 16],
count: usize,
pub has_gpt: bool,
}Expand description
Partition table for a disk
Fields§
§partitions: [Option<PartitionInfo>; 16]§count: usize§has_gpt: boolImplementations§
Auto Trait Implementations§
impl Freeze for PartitionTable
impl RefUnwindSafe for PartitionTable
impl Send for PartitionTable
impl Sync for PartitionTable
impl Unpin for PartitionTable
impl UnwindSafe for PartitionTable
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