Skip to main content

InstructionResult

Type Alias InstructionResult 

Source
pub type InstructionResult<T> = Result<T, InstructionError>;

Aliased Type§

pub enum InstructionResult<T> {
    Ok(T),
    Err(InstructionError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InstructionError)

Contains the error value