pub type Result<T> = Result<T, Error>;
Result type returned by functions in this crate.
Uses the crate-local Error type as the error variant.
Error
pub enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value