pub type Result<T> = Result<T, Error>;
Expand description
libqaul
specific Result with embedded Error
The returned Error
can sometimes be considered non-fatal. Check
the Error
documentation for the specific returned variant to
see, what level of fatality it should be interpreted as. Crashing
on every returned Err(_)
however is a bad idea.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}