pub struct QEmuLauncher { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for QEmuLauncher
impl Clone for QEmuLauncher
Source§fn clone(&self) -> QEmuLauncher
fn clone(&self) -> QEmuLauncher
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QEmuLauncher
impl Debug for QEmuLauncher
Source§impl Default for QEmuLauncher
impl Default for QEmuLauncher
Source§impl Launcher for QEmuLauncher
impl Launcher for QEmuLauncher
fn delete_snapshot(&self, vm: &VM, name: String) -> Result<()>
fn snapshot(&self, vm: &VM, name: String) -> Result<()>
fn restore(&self, vm: &VM, name: String) -> Result<()>
fn reset(&self, vm: &VM) -> Result<()>
fn shutdown_immediately(&self, vm: &VM) -> Result<()>
fn shutdown_wait(&self, vm: &VM) -> Result<ExitStatus>
fn launch_attached(&self, vm: &VM) -> Result<ExitStatus>
fn launch_detached(&self, vm: &VM) -> Result<()>
fn save_state(&self, vm: &VM) -> Result<()>
fn load_state(&self, vm: &VM) -> Result<()>
fn clear_state(&self, vm: &VM) -> Result<()>
fn restart(&self, vm: &VM) -> Result<()>
Auto Trait Implementations§
impl Freeze for QEmuLauncher
impl !RefUnwindSafe for QEmuLauncher
impl !Send for QEmuLauncher
impl !Sync for QEmuLauncher
impl Unpin for QEmuLauncher
impl !UnwindSafe for QEmuLauncher
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