Trait jwt::algorithm::rust_crypto::TypeLevelAlgorithmType[][src]

pub trait TypeLevelAlgorithmType {
    fn algorithm_type() -> AlgorithmType;
}
Expand description

A trait used to make the implementation of SigningAlgorithm and VerifyingAlgorithm easier. RustCrypto crates tend to have algorithm types defined at the type level, so they cannot accept a self argument.

Required methods

Implementations on Foreign Types

Implementors