pub trait StatusEvented<E> {
    fn as_status_evented(&mut self) -> &dyn Evented;
fn try_recv_status(&self) -> Option<E>; }
Expand description

This trait corresponds to set_listener() of the Entity class in DDS spec. Types implementing this trait can be registered to a poll and polled for status events.

Required methods

Implementors