pub trait SigningMethod<P, C, O> {
    type Error;

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

Required Associated Types§

Required Methods§

Implementors§