Struct graph_core::identity::JsonWebKeySet
source · pub struct JsonWebKeySet {
pub keys: HashSet<JsonWebKey>,
}
Expand description
A JSON Web Key Set (JWKS) is a JSON object that represents a set of JWKs. The JSON object MUST have a “keys” member, which is an array of JWKs.
Fields§
§keys: HashSet<JsonWebKey>
Trait Implementations§
source§impl Clone for JsonWebKeySet
impl Clone for JsonWebKeySet
source§fn clone(&self) -> JsonWebKeySet
fn clone(&self) -> JsonWebKeySet
Returns a copy 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 Debug for JsonWebKeySet
impl Debug for JsonWebKeySet
source§impl<'de> Deserialize<'de> for JsonWebKeySet
impl<'de> Deserialize<'de> for JsonWebKeySet
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 Display for JsonWebKeySet
impl Display for JsonWebKeySet
Auto Trait Implementations§
impl Freeze for JsonWebKeySet
impl RefUnwindSafe for JsonWebKeySet
impl Send for JsonWebKeySet
impl Sync for JsonWebKeySet
impl Unpin for JsonWebKeySet
impl UnwindSafe for JsonWebKeySet
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