Type Alias mas_jose::jwk::PublicJsonWebKeySet
source · pub type PublicJsonWebKeySet = JsonWebKeySet<JsonWebKeyPublicParameters>;
Aliased Type§
struct PublicJsonWebKeySet { /* private fields */ }
Implementations
source§impl<P> JsonWebKeySet<P>
impl<P> JsonWebKeySet<P>
pub fn new(keys: Vec<JsonWebKey<P>>) -> Self
sourcepub fn find_key(
&self,
constraints: &ConstraintSet<'_>,
) -> Option<&JsonWebKey<P>>where
P: ParametersInfo,
pub fn find_key(
&self,
constraints: &ConstraintSet<'_>,
) -> Option<&JsonWebKey<P>>where
P: ParametersInfo,
Find the best key given the constraints
sourcepub fn find_keys(&self, constraints: &ConstraintSet<'_>) -> Vec<&JsonWebKey<P>>where
P: ParametersInfo,
pub fn find_keys(&self, constraints: &ConstraintSet<'_>) -> Vec<&JsonWebKey<P>>where
P: ParametersInfo,
Find the list of keys which match the given constraints
sourcepub fn signing_key_for_algorithm(
&self,
alg: &JsonWebSignatureAlg,
) -> Option<&JsonWebKey<P>>where
P: ParametersInfo,
pub fn signing_key_for_algorithm(
&self,
alg: &JsonWebSignatureAlg,
) -> Option<&JsonWebKey<P>>where
P: ParametersInfo,
Find a key for the given algorithm. Returns None
if no suitable key
was found.
sourcepub fn available_signing_algorithms(&self) -> Vec<JsonWebSignatureAlg>where
P: ParametersInfo,
pub fn available_signing_algorithms(&self) -> Vec<JsonWebSignatureAlg>where
P: ParametersInfo,
Get a list of available signing algorithms for this JsonWebKeySet
Trait Implementations§
source§impl From<JsonWebKeySet<JsonWebKeyPrivateParameters>> for PublicJsonWebKeySet
impl From<JsonWebKeySet<JsonWebKeyPrivateParameters>> for PublicJsonWebKeySet
source§fn from(value: PrivateJsonWebKeySet) -> Self
fn from(value: PrivateJsonWebKeySet) -> Self
Converts to this type from the input type.
source§impl<P: Clone> Clone for JsonWebKeySet<P>
impl<P: Clone> Clone for JsonWebKeySet<P>
source§fn clone(&self) -> JsonWebKeySet<P>
fn clone(&self) -> JsonWebKeySet<P>
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<P: Debug> Debug for JsonWebKeySet<P>
impl<P: Debug> Debug for JsonWebKeySet<P>
source§impl<P> Default for JsonWebKeySet<P>
impl<P> Default for JsonWebKeySet<P>
source§impl<P> Deref for JsonWebKeySet<P>
impl<P> Deref for JsonWebKeySet<P>
source§impl<'de, P> Deserialize<'de> for JsonWebKeySet<P>where
P: Deserialize<'de>,
impl<'de, P> Deserialize<'de> for JsonWebKeySet<P>where
P: Deserialize<'de>,
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<P> FromIterator<JsonWebKey<P>> for JsonWebKeySet<P>
impl<P> FromIterator<JsonWebKey<P>> for JsonWebKeySet<P>
source§fn from_iter<T: IntoIterator<Item = JsonWebKey<P>>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = JsonWebKey<P>>>(iter: T) -> Self
Creates a value from an iterator. Read more
source§impl<P: JsonSchema> JsonSchema for JsonWebKeySet<P>
impl<P: JsonSchema> JsonSchema for JsonWebKeySet<P>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moresource§impl<P: PartialEq> PartialEq for JsonWebKeySet<P>
impl<P: PartialEq> PartialEq for JsonWebKeySet<P>
source§fn eq(&self, other: &JsonWebKeySet<P>) -> bool
fn eq(&self, other: &JsonWebKeySet<P>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.