[][src]Enum webauthn_rs::crypto::ECDSACurve

pub enum ECDSACurve {
    SECP256R1,
    SECP384R1,
    SECP521R1,
}

An ECDSACurve identifier. You probabably will never need to alter or use this value, as it is set inside the Credential for you.

Variants

SECP256R1

Identifies this curve as SECP256R1 (X9_62_PRIME256V1 in OpenSSL)

SECP384R1

Identifies this curve as SECP384R1

SECP521R1

Identifies this curve as SECP521R1

Trait Implementations

impl Clone for ECDSACurve[src]

impl Debug for ECDSACurve[src]

impl<'de> Deserialize<'de> for ECDSACurve[src]

impl Serialize for ECDSACurve[src]

impl TryFrom<i128> for ECDSACurve[src]

type Error = WebauthnError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.