pub type Result<T> = StdResult<T, DecrustError>;
Expand description
The standard Result type used throughout Decrust - simplified for ultimate interface
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(DecrustError),
}
pub type Result<T> = StdResult<T, DecrustError>;
The standard Result type used throughout Decrust - simplified for ultimate interface
pub enum Result<T> {
Ok(T),
Err(DecrustError),
}