pub struct PartitionTable {
pub kind: PartitionTableKind,
pub partitions: Vec<PartitionInfo>,
}Fields§
§kind: PartitionTableKind§partitions: Vec<PartitionInfo>Implementations§
Trait Implementations§
Source§impl Clone for PartitionTable
impl Clone for PartitionTable
Source§fn clone(&self) -> PartitionTable
fn clone(&self) -> PartitionTable
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 PartitionTable
impl Debug for PartitionTable
Source§impl PartialEq for PartitionTable
impl PartialEq for PartitionTable
Source§fn eq(&self, other: &PartitionTable) -> bool
fn eq(&self, other: &PartitionTable) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PartitionTable
impl StructuralPartialEq for PartitionTable
Auto Trait Implementations§
impl Freeze for PartitionTable
impl RefUnwindSafe for PartitionTable
impl Send for PartitionTable
impl Sync for PartitionTable
impl Unpin for PartitionTable
impl UnsafeUnpin 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