Struct vboxhelper::VmInfo[][src]

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>,
}

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

impl RefUnwindSafe for VmInfo

impl Send for VmInfo

impl Sync for VmInfo

impl Unpin for VmInfo

impl UnwindSafe for VmInfo

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.