pub struct JwtKey {
pub e: String,
pub kty: String,
pub alg: String,
pub n: String,
pub kid: String,
}Fields§
§e: String§kty: String§alg: String§n: String§kid: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JwtKey
impl<'de> Deserialize<'de> for JwtKey
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JwtKey
impl RefUnwindSafe for JwtKey
impl Send for JwtKey
impl Sync for JwtKey
impl Unpin for JwtKey
impl UnwindSafe for JwtKey
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