pub trait Verifier {
    type Target;
    fn verify(&self, target: &Self::Target) -> Result<(), Error>;
}
Expand description

Trait for verification

Associated Types

The verification associated target

Required methods

The Interface for verification

Implementors