[][src]Trait qemu_exit::QEMUExit

pub trait QEMUExit {
    fn exit(&self, code: u32) -> !;
fn exit_success(&self) -> !;
fn exit_failure(&self) -> !; }

Generic interface for exiting QEMU.

Required methods

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

Exit with specified return code.

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

fn exit_success(&self) -> !

Exit QEMU using EXIT_SUCCESS, aka 0, if possible.

Note: Not possible for X86.

fn exit_failure(&self) -> !

Exit QEMU using EXIT_FAILURE, aka 1.

Loading content...

Implementors

impl QEMUExit for X86[src]

Loading content...