Skip to main content

MbrPartitionTable

Struct MbrPartitionTable 

Source
#[repr(transparent)]
pub struct MbrPartitionTable { pub partitions: [MbrPartition; 4], }
Expand description

The MBR partition table (4 primary partition entries).

Fields§

§partitions: [MbrPartition; 4]

The four primary partition entries.

Implementations§

Source§

impl MbrPartitionTable

Source

pub const fn new() -> Self

Creates a new empty MBR partition table.

Source

pub const fn protective(disk_sectors: u64) -> Self

Creates a protective MBR partition table for GPT disks.

This creates a single partition entry covering the entire disk, with type 0xEE (GPT Protective).

Source

pub fn count(&self) -> usize

Returns the number of non-empty partition entries.

Source

pub fn is_valid(&self) -> bool

Returns whether this appears to be a valid MBR partition table.

Checks that boot indicators are valid (0x00 or 0x80).

Source

pub fn is_protective(&self) -> bool

Returns whether this is a protective MBR (indicating a GPT disk).

Source

pub fn iter(&self) -> impl Iterator<Item = &MbrPartition>

Returns an iterator over non-empty partitions.

Source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut MbrPartition>

Returns a mutable iterator over all partition slots.

Trait Implementations§

Source§

impl Clone for MbrPartitionTable

Source§

fn clone(&self) -> MbrPartitionTable

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for MbrPartitionTable

Source§

impl Debug for MbrPartitionTable

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for MbrPartitionTable

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Index<usize> for MbrPartitionTable

Source§

type Output = MbrPartition

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for MbrPartitionTable

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl PartitionTableRead for MbrPartitionTable

Source§

type Partition = MbrPartition

The partition entry type for this table.
Source§

fn partition_count(&self) -> usize

Returns the number of partitions in the table.
Source§

fn partition(&self, index: usize) -> Option<&Self::Partition>

Returns a reference to a partition by index.
Source§

impl Pod for MbrPartitionTable

Source§

impl Zeroable for MbrPartitionTable

Source§

fn zeroed() -> Self

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AnyBitPattern for T
where T: Pod,

Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

Source§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
Source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> NoUninit for T
where T: Pod,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.