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