pub trait Source<T> {
// Required method
fn try_pop(&mut self) -> Option<T>;
}Expand description
Yield events.
§Implementors
crate::seq_ring::Consumer— drains the next in-order item.crate::event_buf::Consumer— pops the oldest buffered item.