Trait futures::task::EventSet
[−]
[src]
pub trait EventSet: Send + Sync + 'static { fn insert(&self, id: usize); }
A concurrent set which allows for the insertion of usize
values.
EventSet
s are used to communicate precise information about the event(s)
that trigged a task notification. See task::with_unpark_event
for details.