pub type DecodeResult = Result<DecodedInstruction, DecodeError>;
Expand description

Represents a succesfull instruction decoding, or failure.

Aliased Type§

enum DecodeResult {
    Ok(DecodedInstruction),
    Err(DecodeError),
}

Variants§

§1.0.0

Ok(DecodedInstruction)

Contains the success value

§1.0.0

Err(DecodeError)

Contains the error value