Trait QEMUExit

Source
pub trait QEMUExit {
    // Required methods
    fn exit(&self, code: u32) -> !;
    fn exit_success(&self) -> !;
    fn exit_failure(&self) -> !;
}
Expand description

Generic interface for exiting QEMU.

Required Methods§

Source

fn exit(&self, code: u32) -> !

Exit with specified return code.

Note: For X86, code is binary-OR’ed with 0x1 inside QEMU.

Source

fn exit_success(&self) -> !

Exit QEMU using EXIT_SUCCESS, aka 0, if possible.

Note: Not possible for X86.

Source

fn exit_failure(&self) -> !

Exit QEMU using EXIT_FAILURE, aka 1.

Implementors§