pub struct PartitionTable {
pub label: PartitionType,
pub id: String,
pub device: String,
pub partitions: Vec<Partition>,
}
Fields§
§label: PartitionType
§id: String
§device: String
§partitions: Vec<Partition>
Implementations§
Trait Implementations§
Source§impl Debug for PartitionTable
impl Debug for PartitionTable
Source§impl<'de> Deserialize<'de> for PartitionTable
impl<'de> Deserialize<'de> for PartitionTable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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