pub trait Listen: Unpin {
// Required method
fn poll_next(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<ListenEvent, Box<dyn Error + Send + Sync>>>;
}
pub trait Listen: Unpin {
// Required method
fn poll_next(
&mut self,
cx: &mut Context<'_>,
) -> Poll<Result<ListenEvent, Box<dyn Error + Send + Sync>>>;
}