Type Alias throw_error::Result
source · pub type Result<T, E = Error> = Result<T, E>;Expand description
This is a result type into which any error can be converted.
Results are stored as Error.
Aliased Type§
enum Result<T, E = Error> {
Ok(T),
Err(E),
}