Enum qapi_qmp::ImageInfoSpecificQCow2Encryption [] [src]

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

Variants

Fields of luks

Fields of aes

Methods

impl ImageInfoSpecificQCow2Encryption
[src]

Trait Implementations

impl Debug for ImageInfoSpecificQCow2Encryption
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ImageInfoSpecificQCow2Encryption
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations