[][src]Struct gpt::GptConfig

pub struct GptConfig { /* fields omitted */ }

Configuration options to open a GPT disk.

Methods

impl GptConfig[src]

pub fn new() -> Self[src]

Create a new default configuration.

pub fn writable(self, writable: bool) -> Self[src]

Whether to open a GPT partition table in writable mode.

pub fn initialized(self, initialized: bool) -> Self[src]

Whether to assume an initialized GPT disk and read its partition table on open.

pub fn logical_block_size(self, lb_size: LogicalBlockSize) -> Self[src]

Size of logical blocks (sectors) for this disk.

pub fn open(self, diskpath: &Path) -> Result<GptDisk>[src]

Open the GPT disk at the given path and inspect it according to configuration options.

Trait Implementations

impl Default for GptConfig[src]

impl Eq for GptConfig[src]

impl PartialEq<GptConfig> for GptConfig[src]

impl Debug for GptConfig[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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