pub trait OutputPort<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 Self: 'async_trait,
'life0: 'async_trait;
}