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: DecodingKey
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Key
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