[][src]Trait jwt::token::verified::VerifyWithStore

pub trait VerifyWithStore<T> {
    fn verify_with_store<S, A>(self, store: &S) -> Result<T, Error>
    where
        S: Store<Algorithm = A>,
        A: VerifyingAlgorithm
; }

Allow objects to be verified with a store.

Required methods

fn verify_with_store<S, A>(self, store: &S) -> Result<T, Error> where
    S: Store<Algorithm = A>,
    A: VerifyingAlgorithm

Loading content...

Implementations on Foreign Types

impl<'a, H, C> VerifyWithStore<Token<H, C, Verified>> for &'a str where
    H: FromBase64 + JoseHeader,
    C: FromBase64
[src]

impl<'a, C: FromBase64> VerifyWithStore<C> for &'a str[src]

Loading content...

Implementors

impl<'a, H: JoseHeader, C> VerifyWithStore<Token<H, C, Verified>> for Token<H, C, Unverified<'a>>[src]

Loading content...