pub type Result<T, E = ErrorCode> = Result<T, E>;
Type alias for Result with ErrorCode as error variant by default
ErrorCode
pub enum Result<T, E = ErrorCode> { Ok(T), Err(E), }
Contains the success value
Contains the error value