Enum qapi_qmp::BlockdevQcow2Encryption [] [src]

pub enum BlockdevQcow2Encryption {
    luks {
        key_secret: Option<String>,
    },
    aes {
        key_secret: Option<String>,
    },
}

Variants

Fields of luks

Fields of aes

Methods

impl BlockdevQcow2Encryption
[src]

Trait Implementations

impl Debug for BlockdevQcow2Encryption
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BlockdevQcow2Encryption
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations