pub struct WrappedJsonWebKeySet {
pub keys: Vec<WrappedJsonWebKey>,
}Expand description
A set of JSON Web Keys.
Fields§
§keys: Vec<WrappedJsonWebKey>Collection of JWKs in the set.
Trait Implementations§
Source§impl Clone for WrappedJsonWebKeySet
impl Clone for WrappedJsonWebKeySet
Source§fn clone(&self) -> WrappedJsonWebKeySet
fn clone(&self) -> WrappedJsonWebKeySet
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for WrappedJsonWebKeySet
impl<'de> Deserialize<'de> for WrappedJsonWebKeySet
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 WrappedJsonWebKeySet
impl RefUnwindSafe for WrappedJsonWebKeySet
impl Send for WrappedJsonWebKeySet
impl Sync for WrappedJsonWebKeySet
impl Unpin for WrappedJsonWebKeySet
impl UnwindSafe for WrappedJsonWebKeySet
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