pub type AssertionMethod = UrlOr<Multikey>;Expand description
A reference to a verification method, either as a bare URL or an
inlined Multikey document.
This is the value type shared by ActivityPub assertionMethod and
authentication arrays per FEP-521a §4 and the W3C Controlled
Identifiers spec.
Aliased Type§
pub enum AssertionMethod {
Url(Url),
Object(Multikey),
}