pub type Result<T> = Result<T, ExampleError>;
Expand description
The result type of this crate.
Aliased Type§
enum Result<T> {
Ok(T),
Err(ExampleError),
}
pub type Result<T> = Result<T, ExampleError>;
The result type of this crate.
enum Result<T> {
Ok(T),
Err(ExampleError),
}