PartitionTable

Trait PartitionTable 

Source
pub trait PartitionTable {
    // Required methods
    fn size(&self) -> usize;
    fn partition_table_entries(&self) -> &[PartitionTableEntry];
}
Expand description

A general trait for partition table types.

Required Methods§

Source

fn size(&self) -> usize

The size of the partition table itself, in bytes.

Source

fn partition_table_entries(&self) -> &[PartitionTableEntry]

The entries in this table.

Implementors§