n0_snafuType Alias Result
Source pub type Result<A = (), E = Error> = Result<A, E>;
enum Result<A = (), E = Error> {
Ok(A),
Err(E),
}
Contains the success value
Quickly convert a std error into a Error
, without having to write a context
message.
Quickly convert a std error into a Error
, without having to write a context
message.