[][src]Struct picky::jose::jwk::JwkSet

pub struct JwkSet {
    pub keys: Vec<Jwk>,
}

Fields

keys: Vec<Jwk>

Methods

impl JwkSet[src]

pub fn from_json(json: &str) -> Result<Self, JwkError>[src]

pub fn to_json(&self) -> Result<String, JwkError>[src]

pub fn to_json_pretty(&self) -> Result<String, JwkError>[src]

Trait Implementations

impl Clone for JwkSet[src]

impl Debug for JwkSet[src]

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

impl Eq for JwkSet[src]

impl Hash for JwkSet[src]

impl PartialEq<JwkSet> for JwkSet[src]

impl Serialize for JwkSet[src]

impl StructuralEq for JwkSet[src]

impl StructuralPartialEq for JwkSet[src]

Auto Trait Implementations

impl RefUnwindSafe for JwkSet

impl Send for JwkSet

impl Sync for JwkSet

impl Unpin for JwkSet

impl UnwindSafe for JwkSet

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: Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,