[][src]Struct libcryptsetup_rs::CryptInit

pub struct CryptInit;

Initialization handle for devices

Implementations

impl CryptInit[src]

pub fn init(device_path: &Path) -> Result<CryptDevice, LibcryptErr>[src]

Initialize by device path

pub fn init_with_data_device(
    device_paths: Either<&Path, (&Path, &Path)>
) -> Result<CryptDevice, LibcryptErr>
[src]

Initialize by device path or a header path and a data device path

pub fn init_by_name_and_header(
    name: &str,
    header_device_path: Option<&Path>
) -> Result<CryptDevice, LibcryptErr>
[src]

Initialize by name and header device path

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.