pub trait AlgorithmSelection<M, O>: SignatureAlgorithmType {
// Required method
fn select_algorithm(
verification_method: &M,
options: &O,
) -> Result<Self::Instance, AlgorithmSelectionError>;
}Required Methods§
fn select_algorithm( verification_method: &M, options: &O, ) -> Result<Self::Instance, AlgorithmSelectionError>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.