pub trait OutputPort<T>where
T: Send + 'static,{
// Required method
fn send<'life0, 'async_trait>(
&'life0 self,
message: T,
) -> Pin<Box<dyn Future<Output = Result<(), SendError>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}