pub type Result<T> = Result<T, Error>;
mtls
A specialized Result type for all operations from this crate.
Result
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value