pub struct AkvKeyReleaseJwtHeader {
pub alg: String,
pub x5c: Vec<String>,
}
Expand description
The subset of standard JWT header.
Fields§
§alg: String
Indicate the signing algorithm, “none” indicates the JWT is unsigned (unsecured).
x5c: Vec<String>
The certificate chain used to validate the signature if the JWT is signed (signed).
Trait Implementations§
Source§impl Debug for AkvKeyReleaseJwtHeader
impl Debug for AkvKeyReleaseJwtHeader
Source§impl<'de> Deserialize<'de> for AkvKeyReleaseJwtHeader
impl<'de> Deserialize<'de> for AkvKeyReleaseJwtHeader
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 AkvKeyReleaseJwtHeader
impl RefUnwindSafe for AkvKeyReleaseJwtHeader
impl Send for AkvKeyReleaseJwtHeader
impl Sync for AkvKeyReleaseJwtHeader
impl Unpin for AkvKeyReleaseJwtHeader
impl UnwindSafe for AkvKeyReleaseJwtHeader
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