pub trait DidPublisher {
type Error;
// Required method
fn publish_did_document(
&self,
actor_id: &str,
document_json: &str,
) -> Result<String, Self::Error>;
}Required Associated Types§
Required Methods§
fn publish_did_document( &self, actor_id: &str, document_json: &str, ) -> Result<String, Self::Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".