pub struct JwtHeader {
pub algorithm: SigningAlgorithm,
pub key_id: Option<String>,
pub token_type: Option<String>,
pub additional: BTreeMap<String, Value>,
}Fields§
§algorithm: SigningAlgorithm§key_id: Option<String>§token_type: Option<String>§additional: BTreeMap<String, Value>Trait Implementations§
impl StructuralPartialEq for JwtHeader
Auto Trait Implementations§
impl Freeze for JwtHeader
impl RefUnwindSafe for JwtHeader
impl Send for JwtHeader
impl Sync for JwtHeader
impl Unpin for JwtHeader
impl UnsafeUnpin for JwtHeader
impl UnwindSafe for JwtHeader
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