pub trait TangleResolve {
    fn resolve<'life0, 'life1, 'async_trait>(
        &'life0 self,
        did: &'life1 IotaDID
    ) -> Pin<Box<dyn Future<Output = Result<ResolvedIotaDocument, Error>> + 'async_trait, Global>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Resolves a DID on the Tangle

Implementors