pub trait VerificationMethodSet: VerificationMethod {
    type TypeSet: VerificationMethodTypeSet;

    // Required method
    fn type_set() -> Self::TypeSet;
}

Required Associated Types§

Required Methods§

source

fn type_set() -> Self::TypeSet

Object Safety§

This trait is not object safe.

Implementors§