pub trait ValueRetrieval {
// Required method
fn retrieve(claim_value: Value) -> Option<Self>
where Self: Sized;
}Expand description
Trait to be implemented for any sized data type for which a JWT claim wants to casted when
retrieved by the JWTClaims::get_claim method.