Trait jwt::algorithm::store::Store[][src]

pub trait Store {
    type Algorithm: ?Sized;
    fn get(&self, key_id: &str) -> Option<&Self::Algorithm>;
}
Expand description

A store of keys that can be retrieved by key id.

Associated Types

Required methods

Implementations on Foreign Types

Implementors