pub struct VmSlot {
pub name: String,
pub index: u8,
pub tap_dev: String,
pub mac: String,
pub guest_ip: String,
pub vm_dir: String,
pub api_socket: String,
}Expand description
Per-VM network + filesystem identity, derived from a slot index.
Fields§
§name: String§index: u8§tap_dev: String§mac: String§guest_ip: String§vm_dir: String§api_socket: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VmSlot
impl RefUnwindSafe for VmSlot
impl Send for VmSlot
impl Sync for VmSlot
impl Unpin for VmSlot
impl UnsafeUnpin for VmSlot
impl UnwindSafe for VmSlot
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