pub trait WitnessKeyResolver: Send + Sync {
// Required method
fn get_public_key(&self, witness_did: &str) -> Option<Vec<u8>>;
}Expand description
Witness public key resolver.
Implementations provide public keys for witnesses by their DID.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".