pub struct PartitionInfo {
pub index: usize,
pub table_kind: PartitionTableKind,
pub region: PartitionRegion,
pub name: Option<String>,
pub part_uuid: Option<String>,
pub bootable: bool,
}Fields§
§index: usize§table_kind: PartitionTableKind§region: PartitionRegion§name: Option<String>§part_uuid: Option<String>§bootable: boolTrait Implementations§
Source§impl Clone for PartitionInfo
impl Clone for PartitionInfo
Source§fn clone(&self) -> PartitionInfo
fn clone(&self) -> PartitionInfo
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 PartitionInfo
impl Debug for PartitionInfo
Source§impl PartialEq for PartitionInfo
impl PartialEq for PartitionInfo
Source§fn eq(&self, other: &PartitionInfo) -> bool
fn eq(&self, other: &PartitionInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PartitionInfo
impl StructuralPartialEq for PartitionInfo
Auto Trait Implementations§
impl Freeze for PartitionInfo
impl RefUnwindSafe for PartitionInfo
impl Send for PartitionInfo
impl Sync for PartitionInfo
impl Unpin for PartitionInfo
impl UnsafeUnpin for PartitionInfo
impl UnwindSafe for PartitionInfo
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