pub trait RemoteMessageWrite:
Interface
+ Send
+ Sync {
// Required method
fn send<'life0, 'async_trait>(
&'life0 self,
message: Message,
) -> Pin<Box<dyn Future<Output = Result<CreateResponseKind<Option<Uuid>>, MappedErrors>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}