Trait jwt::token::signed::SignWithStore
source · pub trait SignWithStore<T> {
// Required method
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§
fn sign_with_store<S, A>(self, store: &S) -> Result<T, Error>where
S: Store<Algorithm = A>,
A: SigningAlgorithm,
Object Safety§
This trait is not object safe.