[][src]Struct qapi_qmp::QCryptoBlockInfoLUKS

pub struct QCryptoBlockInfoLUKS {
    pub payload_offset: isize,
    pub ivgen_alg: QCryptoIVGenAlgorithm,
    pub slots: Vec<QCryptoBlockInfoLUKSSlot>,
    pub ivgen_hash_alg: Option<QCryptoHashAlgorithm>,
    pub cipher_alg: QCryptoCipherAlgorithm,
    pub hash_alg: QCryptoHashAlgorithm,
    pub master_key_iters: isize,
    pub cipher_mode: QCryptoCipherMode,
    pub uuid: String,
}

Fields

payload_offset: isizeivgen_alg: QCryptoIVGenAlgorithmslots: Vec<QCryptoBlockInfoLUKSSlot>ivgen_hash_alg: Option<QCryptoHashAlgorithm>cipher_alg: QCryptoCipherAlgorithmhash_alg: QCryptoHashAlgorithmmaster_key_iters: isizecipher_mode: QCryptoCipherModeuuid: String

Trait Implementations

impl Clone for QCryptoBlockInfoLUKS[src]

impl Debug for QCryptoBlockInfoLUKS[src]

impl<'de> Deserialize<'de> for QCryptoBlockInfoLUKS[src]

impl Serialize for QCryptoBlockInfoLUKS[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.