Struct actix_web_jwt::Key
source · pub struct Key {
pub kid: String,
pub kty: String,
pub use_key: String,
pub n: String,
pub e: String,
pub x5c: Option<Vec<String>>,
pub x5t: Option<String>,
pub x5t_s256: Option<String>,
pub alg: String,
pub de_key: DecodingKey,
}Fields§
§kid: String§kty: String§use_key: String§n: String§e: String§x5c: Option<Vec<String>>§x5t: Option<String>§x5t_s256: Option<String>§alg: String§de_key: DecodingKeyTrait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Key
impl Send for Key
impl Sync for Key
impl Unpin for Key
impl UnwindSafe for Key
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