pub struct JWTClaimsParser {}Expand description
This parser receives an untrusted JWT token (validation should be done previously using
a SignatureValidator) and results in the content of the JWT
extracted into a JWTClaims. If parsing fails, it results in a JWTError.
Implementations§
Auto Trait Implementations§
impl Freeze for JWTClaimsParser
impl RefUnwindSafe for JWTClaimsParser
impl Send for JWTClaimsParser
impl Sync for JWTClaimsParser
impl Unpin for JWTClaimsParser
impl UnwindSafe for JWTClaimsParser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more