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