pub struct Jwk {
pub key: Key,
pub prm: Parameters,
}Expand description
A JSON Web Key.
This type is defined in RFC7517 Section 4.
Fields§
§key: Key§prm: ParametersThe key parameters.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Jwk
impl<'de> Deserialize<'de> for Jwk
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
Source§impl TryFrom<AsymmetricKey<PublicKey, StaticSecret>> for Jwk
Converts an X25519KeyPair to a Jwk.
impl TryFrom<AsymmetricKey<PublicKey, StaticSecret>> for Jwk
Converts an X25519KeyPair to a Jwk.
Source§impl TryFrom<AsymmetricKey<VerifyingKey, SigningKey>> for Jwk
Converts an Ed25519KeyPair to a Jwk.
impl TryFrom<AsymmetricKey<VerifyingKey, SigningKey>> for Jwk
Converts an Ed25519KeyPair to a Jwk.
Source§impl TryFrom<Jwk> for X25519KeyPair
Converts a Jwk to an X25519KeyPair.
impl TryFrom<Jwk> for X25519KeyPair
Converts a Jwk to an X25519KeyPair.
Source§impl TryFrom<Jwk> for Ed25519KeyPair
Converts a Jwk to an Ed25519KeyPair.
impl TryFrom<Jwk> for Ed25519KeyPair
Converts a Jwk to an Ed25519KeyPair.
impl Eq for Jwk
impl StructuralPartialEq for Jwk
Auto Trait Implementations§
impl Freeze for Jwk
impl RefUnwindSafe for Jwk
impl Send for Jwk
impl Sync for Jwk
impl Unpin for Jwk
impl UnwindSafe for Jwk
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.