[][src]Struct gpt::mbr::PartRecord

pub struct PartRecord { /* fields omitted */ }

A partition record, MBR-style.

Methods

impl PartRecord[src]

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

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

pub fn zero() -> Self[src]

Create an all-zero Partition Record.

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

Parse input bytes into a Partition Record.

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

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

Trait Implementations

impl PartialEq<PartRecord> for PartRecord[src]

impl Eq for PartRecord[src]

impl Debug for PartRecord[src]

Auto Trait Implementations

impl Send for PartRecord

impl Sync for PartRecord

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.