Trait breez_sdk_liquid::grpc::support_server::Support
pub trait Support:
Send
+ Sync
+ 'static {
// Required methods
fn report_payment_failure<'life0, 'async_trait>(
&'life0 self,
request: Request<ReportPaymentFailureRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<ReportPaymentFailureReply>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn breez_status<'life0, 'async_trait>(
&'life0 self,
request: Request<BreezStatusRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<BreezStatusReply>, 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 SupportServer.