Enum verne::Resource [] [src]

pub enum Resource {
    Guest {
        name: String,
        memory: u64,
        vcpus: u32,
    },
    Network {
        name: String,
        bridge: String,
        ip_address: String,
        network: String,
    },
    Interface {
        name: String,
        kind: String,
        mac: String,
    },
    StoragePool {
        name: String,
        path: String,
    },
}

Variants

Fields of Guest

Fields of Network

Fields of Interface

Fields of StoragePool

Trait Implementations

impl Debug for Resource
[src]

Formats the value using the given formatter.