Enum qapi_qmp::QCryptoBlockCreateOptions [] [src]

pub enum QCryptoBlockCreateOptions {
    qcow {
        key_secret: Option<String>,
    },
    luks {
        cipher_mode: Option<QCryptoCipherMode>,
        ivgen_alg: Option<QCryptoIVGenAlgorithm>,
        iter_time: Option<isize>,
        ivgen_hash_alg: Option<QCryptoHashAlgorithm>,
        hash_alg: Option<QCryptoHashAlgorithm>,
        cipher_alg: Option<QCryptoCipherAlgorithm>,
    },
}

Variants

Fields of qcow

Fields of luks

Methods

impl QCryptoBlockCreateOptions
[src]

Trait Implementations

impl Debug for QCryptoBlockCreateOptions
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for QCryptoBlockCreateOptions
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations