pub type PcodeResult<T> = Result<T, PcodeError>;Expand description
Shorthand for a result carrying a PcodeError.
Aliased Type§
pub enum PcodeResult<T> {
Ok(T),
Err(PcodeError),
}pub type PcodeResult<T> = Result<T, PcodeError>;Shorthand for a result carrying a PcodeError.
pub enum PcodeResult<T> {
Ok(T),
Err(PcodeError),
}