pub type InstructionResult<T> = Result<T, InstructionError>;Expand description
A type alias for instruction’s results.
Aliased Type§
pub enum InstructionResult<T> {
Ok(T),
Err(InstructionError),
}pub type InstructionResult<T> = Result<T, InstructionError>;A type alias for instruction’s results.
pub enum InstructionResult<T> {
Ok(T),
Err(InstructionError),
}