pub trait PollPostMessage: Send {
// Required method
fn poll_post_message(
&mut self,
cx: &mut Context<'_>,
connection_id: u32,
typ: u32,
msg: &[u8],
) -> Poll<()>;
}
pub trait PollPostMessage: Send {
// Required method
fn poll_post_message(
&mut self,
cx: &mut Context<'_>,
connection_id: u32,
typ: u32,
msg: &[u8],
) -> Poll<()>;
}