Trait jwt::token::signed::SignWithStore[][src]

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

Allow objects to be signed with a store.

Required methods

Implementations on Foreign Types

Implementors