pub struct MachineOpts {
pub ram_size: u64,
pub cpu_count: u32,
pub kernel: Option<PathBuf>,
pub bios: Option<PathBuf>,
pub append: Option<String>,
pub nographic: bool,
pub drive: Option<PathBuf>,
}Fields§
§ram_size: u64§cpu_count: u32§kernel: Option<PathBuf>§bios: Option<PathBuf>§append: Option<String>§nographic: bool§drive: Option<PathBuf>Auto Trait Implementations§
impl Freeze for MachineOpts
impl RefUnwindSafe for MachineOpts
impl Send for MachineOpts
impl Sync for MachineOpts
impl Unpin for MachineOpts
impl UnsafeUnpin for MachineOpts
impl UnwindSafe for MachineOpts
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