pub trait VirtualBusListener: Debug + Send + Sync + 'static {
    fn poll_call(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<BusCallEvent>; }

Required Methods§

Polls for new calls to this service

Implementors§