pub trait TypeDidProfileResolver: Send + Sync {
// Required method
fn resolve_profiles(
&self,
target: &str,
) -> Result<Vec<TypeDidProfile>, DidError>;
}Expand description
Resolves TypeDID profiles for a remote agent or boundary.
Required Methods§
Sourcefn resolve_profiles(
&self,
target: &str,
) -> Result<Vec<TypeDidProfile>, DidError>
fn resolve_profiles( &self, target: &str, ) -> Result<Vec<TypeDidProfile>, DidError>
Resolve profiles advertised by target.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".