[][src]Struct cryptsetup_rs::api::CryptDeviceHandle

pub struct CryptDeviceHandle<P: Debug> { /* fields omitted */ }

An opaque handle on an initialized crypt device

Trait Implementations

impl<P: Debug> CryptDevice for CryptDeviceHandle<P>[src]

impl CryptDeviceType for CryptDeviceHandle<Luks1Params>[src]

impl CryptDeviceType for CryptDeviceHandle<Luks2Params>[src]

impl<P: Debug> Debug for CryptDeviceHandle<P>[src]

impl<P: Debug> Drop for CryptDeviceHandle<P>[src]

impl Luks1CryptDevice for CryptDeviceHandle<Luks1Params>[src]

impl Luks2CryptDevice for CryptDeviceHandle<Luks2Params>[src]

impl LuksCryptDevice for CryptDeviceHandle<Luks1Params>[src]

impl LuksCryptDevice for CryptDeviceHandle<Luks2Params>[src]

impl<P: PartialEq + Debug> PartialEq<CryptDeviceHandle<P>> for CryptDeviceHandle<P>[src]

impl<P: Debug> StructuralPartialEq for CryptDeviceHandle<P>[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for CryptDeviceHandle<P> where
    P: RefUnwindSafe

impl<P> !Send for CryptDeviceHandle<P>

impl<P> !Sync for CryptDeviceHandle<P>

impl<P> Unpin for CryptDeviceHandle<P> where
    P: Unpin

impl<P> UnwindSafe for CryptDeviceHandle<P> where
    P: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,