Enum jsonwebtoken::jwk::EllipticCurveKeyType
source · pub enum EllipticCurveKeyType {
EC,
}Expand description
Key type value for an Elliptic Curve Key. This single value enum is a workaround for Rust not supporting associated constants.
Variants§
EC
Key type value for an Elliptic Curve Key.
Trait Implementations§
source§impl Clone for EllipticCurveKeyType
impl Clone for EllipticCurveKeyType
source§fn clone(&self) -> EllipticCurveKeyType
fn clone(&self) -> EllipticCurveKeyType
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 EllipticCurveKeyType
impl Debug for EllipticCurveKeyType
source§impl Default for EllipticCurveKeyType
impl Default for EllipticCurveKeyType
source§impl<'de> Deserialize<'de> for EllipticCurveKeyType
impl<'de> Deserialize<'de> for EllipticCurveKeyType
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 Hash for EllipticCurveKeyType
impl Hash for EllipticCurveKeyType
source§impl PartialEq<EllipticCurveKeyType> for EllipticCurveKeyType
impl PartialEq<EllipticCurveKeyType> for EllipticCurveKeyType
source§fn eq(&self, other: &EllipticCurveKeyType) -> bool
fn eq(&self, other: &EllipticCurveKeyType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.