pub struct VmInfo {
    pub shares_map: HashMap<String, PathBuf>,
    pub shares_list: Vec<(String, PathBuf)>,
    pub state: VmState,
    pub snapshots: Option<Snapshots>,
    pub nics: Vec<NICInfo>,
}
Expand description

A structured representation of a virtual machine’s state and configuration.

Fields

shares_map: HashMap<String, PathBuf>shares_list: Vec<(String, PathBuf)>state: VmStatesnapshots: Option<Snapshots>nics: Vec<NICInfo>

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.