Skip to main content

TypeDidProfileResolver

Trait TypeDidProfileResolver 

Source
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§

Source

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".

Implementors§