pub trait VerificationMethod: Clone {
    // Required methods
    fn id(&self) -> &Iri;
    fn controller(&self) -> Option<&Iri>;
}
Expand description

Verification method.

Required Methods§

source

fn id(&self) -> &Iri

Identifier of the verification method.

source

fn controller(&self) -> Option<&Iri>

Returns the IRI of the verification method controller.

Object Safety§

This trait is not object safe.

Implementors§