pub trait VerifyWithStore<T> {
    // Required method
    fn verify_with_store<S, A>(self, store: &S) -> Result<T, Error>
       where S: Store<Algorithm = A>,
             A: VerifyingAlgorithm;
}Expand description
Allow objects to be verified with a store.
Required Methods§
fn verify_with_store<S, A>(self, store: &S) -> Result<T, Error>where
    S: Store<Algorithm = A>,
    A: VerifyingAlgorithm,
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.