Type Alias mas_jose::jwk::PublicJsonWebKey

source ·
pub type PublicJsonWebKey = JsonWebKey<JsonWebKeyPublicParameters>;

Aliased Type§

struct PublicJsonWebKey { /* private fields */ }

Implementations

source§

impl<P> JsonWebKey<P>

source

pub const fn new(parameters: P) -> Self

Create a new JsonWebKey with the given parameters.

source

pub fn try_map<M, O, E>(self, mapper: M) -> Result<JsonWebKey<O>, E>
where M: FnOnce(P) -> Result<O, E>,

Map the parameters of this JsonWebKey to a new type, with a fallible mapper, consuming the original key.

§Errors

Returns an error if the mapper returns an error.

source

pub fn map<M, O>(self, mapper: M) -> JsonWebKey<O>
where M: FnOnce(P) -> O,

Map the parameters of this JsonWebKey to a new type, consuming the original key.

source

pub fn try_cloned_map<M, O, E>(&self, mapper: M) -> Result<JsonWebKey<O>, E>
where M: FnOnce(&P) -> Result<O, E>,

Map the parameters of this JsonWebKey to a new type, with a fallible mapper, cloning the other fields.

§Errors

Returns an error if the mapper returns an error.

source

pub fn cloned_map<M, O>(&self, mapper: M) -> JsonWebKey<O>
where M: FnOnce(&P) -> O,

Map the parameters of this JsonWebKey to a new type, cloning the other fields.

source

pub fn with_use(self, value: JsonWebKeyUse) -> Self

Set the use field of this JsonWebKey.

source

pub fn with_key_ops(self, key_ops: Vec<JsonWebKeyOperation>) -> Self

Set the key_ops field of this JsonWebKey.

source

pub fn with_alg(self, alg: JsonWebSignatureAlg) -> Self

Set the alg field of this JsonWebKey.

source

pub fn with_kid(self, kid: impl Into<String>) -> Self

Set the kid field of this JsonWebKey.

source

pub const fn alg(&self) -> Option<&JsonWebSignatureAlg>

Get the kid field of this JsonWebKey, if set.

source

pub const fn params(&self) -> &P

Get the inner parameters of this JsonWebKey.

Trait Implementations§

source§

impl TryFrom<JsonWebKey<JsonWebKeyPrivateParameters>> for PublicJsonWebKey

§

type Error = SymetricKeyError

The type returned in the event of a conversion error.
source§

fn try_from(value: PrivateJsonWebKey) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<P: Clone> Clone for JsonWebKey<P>

source§

fn clone(&self) -> JsonWebKey<P>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<P> Constrainable for JsonWebKey<P>
where P: ParametersInfo,

source§

fn kid(&self) -> Option<&str>

Key ID (kid) of this key
source§

fn kty(&self) -> JsonWebKeyType

Key type (kty) of this key
source§

fn algs(&self) -> &[JsonWebSignatureAlg]

List of available algorithms for this key
source§

fn alg(&self) -> Option<&JsonWebSignatureAlg>

source§

fn use_(&self) -> Option<&JsonWebKeyUse>

Usage specified for this key
source§

impl<P: Debug> Debug for JsonWebKey<P>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, P> Deserialize<'de> for JsonWebKey<P>
where P: Deserialize<'de>,

source§

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: JsonSchema> JsonSchema for JsonWebKey<P>

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

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

Generates a JSON Schema for this type. Read more
source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl<P: PartialEq> PartialEq for JsonWebKey<P>

source§

fn eq(&self, other: &JsonWebKey<P>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<P> Serialize for JsonWebKey<P>
where P: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<P: Eq> Eq for JsonWebKey<P>

source§

impl<P> StructuralPartialEq for JsonWebKey<P>