pub type Result<T, E = BoxError> = Result<T, E>;
Result type with a pre-defined BoxError error variant.
Result
pub enum Result<T, E = BoxError> { Ok(T), Err(E), }
Contains the success value
Contains the error value