pub trait PublishExt<M>{
// Required method
fn publish<'life0, 'async_trait>(
&'life0 self,
message: M,
) -> Pin<Box<dyn Future<Output = Result<(), Disconnected>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}