pub trait VerificationMethodRegistry<I> {
    type Error;
    type VM;

    fn get_method<'life0, 'async_trait>(
        &'life0 self,
        id: I
    ) -> Pin<Box<dyn Future<Output = Result<Option<Self::VM>, Self::Error>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; }

Required Associated Types§

Required Methods§

Implementors§