pub trait VerificationMethod<SP, C> {
    type Error;

    fn verify<'life0, 'async_trait>(
        &'life0 self,
        signed_payload: SP,
        context_properties: C
    ) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; }

Required Associated Types§

Required Methods§

Implementors§