Struct rjwt::Claims[][src]

pub struct Claims<I, C> { /* fields omitted */ }

All the claims of a recursive Token.

Implementations

impl<I: PartialEq, C> Claims<I, C>[src]

pub fn get(&self, host: &str, actor_id: &I) -> Option<&C>[src]

Get the most recent claim made by the specified Actor.

Trait Implementations

impl<I: Clone, C: Clone> Clone for Claims<I, C>[src]

impl<I: Debug, C: Debug> Debug for Claims<I, C>[src]

Auto Trait Implementations

impl<I, C> RefUnwindSafe for Claims<I, C> where
    C: RefUnwindSafe,
    I: RefUnwindSafe
[src]

impl<I, C> Send for Claims<I, C> where
    C: Send,
    I: Send
[src]

impl<I, C> Sync for Claims<I, C> where
    C: Sync,
    I: Sync
[src]

impl<I, C> Unpin for Claims<I, C> where
    C: Unpin,
    I: Unpin
[src]

impl<I, C> UnwindSafe for Claims<I, C> where
    C: UnwindSafe,
    I: UnwindSafe
[src]

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> 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>,