pub trait Subject {
// Required method
fn did(&self) -> &str;
// Provided method
fn did_suffix(&self) -> &str { ... }
}
Expand description
A DID Subject.
Required Methods§
Provided Methods§
Sourcefn did_suffix(&self) -> &str
fn did_suffix(&self) -> &str
Returns the DID suffix of the subject.