pub type SimpleResult<T> = Result<T, SimpleError>;Expand description
Result type in which the error is a simple error
Aliased Type§
pub enum SimpleResult<T> {
Ok(T),
Err(SimpleError),
}pub type SimpleResult<T> = Result<T, SimpleError>;Result type in which the error is a simple error
pub enum SimpleResult<T> {
Ok(T),
Err(SimpleError),
}