pub trait VirtualBusInvocation: VirtualBusScope + VirtualBusInvokable + Debug + Send + Sync + 'static {
    fn poll_event(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<BusInvocationEvent>; }

Required Methods§

Polls for new listen events related to this context

Implementors§