pub trait DynConduitTx: Send + Sync {
// Required method
fn send_msg<'a>(
&'a self,
msg: Message<'a>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'a>>;
}pub trait DynConduitTx: Send + Sync {
// Required method
fn send_msg<'a>(
&'a self,
msg: Message<'a>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'a>>;
}