pub trait Verifier { type Target; // Required method fn verify(&self, target: &Self::Target) -> Result<(), Error>; }
Trait for verification
The verification associated target
The Interface for verification