pub type Result<T, E = PassError> = Result<T, E>;
Custom Result that is equivalent to Result<T, PassError>.
Result<T, PassError>
enum Result<T, E = PassError> { Ok(T), Err(E), }
Contains the success value
Contains the error value