Type Alias z80emu::host::Result

source ·
pub type Result<O, R> = Result<(), BreakCause<O, R>>;
Expand description

The type returned from some of the Cpu trait methods.

Aliased Type§

enum Result<O, R> {
    Ok(()),
    Err(BreakCause<O, R>),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(BreakCause<O, R>)

Contains the error value