pub fn decode_jwt<E>( token: &str, config: &JwtConfig, ) -> Result<Claims<E>, JwtError>where E: for<'de> Deserialize<'de>,
Decode and verify a JWT token, returning the Claims.