pub trait TypedVerificationMethod: VerificationMethod {
    // Required methods
    fn expected_type() -> Option<ExpectedType>;
    fn type_match(ty: &str) -> bool;
    fn type_(&self) -> &str;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§