pub type TokenResult<T> = Result<T>;
enum TokenResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value