Trait breez_sdk_liquid::grpc::signer_server::Signer

pub trait Signer: Send + Sync + 'static {
    // Required method
    fn sign_url<'life0, 'async_trait>(
        &'life0 self,
        request: Request<SignUrlRequest>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<SignUrlResponse>, Status>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with SignerServer.

Required Methods§

fn sign_url<'life0, 'async_trait>( &'life0 self, request: Request<SignUrlRequest>, ) -> Pin<Box<dyn Future<Output = Result<Response<SignUrlResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Implementors§