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§
§state: VmState
§snapshots: Option<Snapshots>
§nics: Vec<NICInfo>
Auto Trait Implementations§
impl Freeze for VmInfo
impl RefUnwindSafe for VmInfo
impl Send for VmInfo
impl Sync for VmInfo
impl Unpin for VmInfo
impl UnwindSafe for VmInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more