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

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

Allow objects to be verified with a store.

Required methods

Implementations on Foreign Types

Implementors