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

A general trait for partition table types.

Required Methods

The size of the partition table itself, in bytes.

The entries in this table.

Implementors