Struct gpt::mbr::PartRecord

source ·
pub struct PartRecord {
    pub boot_indicator: u8,
    pub start_head: u8,
    pub start_sector: u8,
    pub start_track: u8,
    pub os_type: u8,
    pub end_head: u8,
    pub end_sector: u8,
    pub end_track: u8,
    pub lb_start: u32,
    pub lb_size: u32,
}
Expand description

A partition record, MBR-style.

Fields§

§boot_indicator: u8

Bit 7 set if partition is active (bootable)

§start_head: u8

CHS address of partition start: 8-bit value of head in CHS address

§start_sector: u8

CHS address of partition start: Upper 2 bits are 8th-9th bits of cylinder, lower 6 bits are sector

§start_track: u8

CHS address of partition start: Lower 8 bits of cylinder

§os_type: u8

Partition type. See https://www.win.tue.nl/~aeb/partitions/partition_types-1.html

§end_head: u8

CHS address of partition end: 8-bit value of head in CHS address

§end_sector: u8

CHS address of partition end: Upper 2 bits are 8th-9th bits of cylinder, lower 6 bits are sector

§end_track: u8

CHS address of partition end: Lower 8 bits of cylinder

§lb_start: u32

LBA of start of partition

§lb_size: u32

Number of sectors in partition

Implementations§

source§

impl PartRecord

source

pub fn new_protective(lb_size: Option<u32>) -> Self

Create a protective Partition Record object with a specific disk size (in LB).

source

pub fn zero() -> Self

Create an all-zero Partition Record.

source

pub fn from_bytes(buf: &[u8]) -> Result<Self>

Parse input bytes into a Partition Record.

source

pub fn as_bytes(&self) -> Result<Vec<u8>>

Return the memory representation of this Partition Record as a byte vector.

Trait Implementations§

source§

impl Clone for PartRecord

source§

fn clone(&self) -> PartRecord

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl Debug for PartRecord

source§

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

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

impl PartialEq for PartRecord

source§

fn eq(&self, other: &PartRecord) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for PartRecord

source§

impl Eq for PartRecord

source§

impl StructuralPartialEq for PartRecord

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> 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> 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> ToOwned for T
where T: Clone,

§

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>,

§

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>,

§

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.