Trait EventSet

Source
pub trait EventSet:
    Send
    + Sync
    + 'static {
    // Required method
    fn insert(&self, id: usize);
}
๐Ÿ‘ŽDeprecated since 0.1.18: recommended to use FuturesUnordered instead
Expand description

A concurrent set which allows for the insertion of usize values.

EventSets are used to communicate precise information about the event(s) that triggered a task notification. See task::with_unpark_event for details.

Required Methodsยง

Source

fn insert(&self, id: usize)

๐Ÿ‘ŽDeprecated since 0.1.18: recommended to use FuturesUnordered instead

Insert the given ID into the set

Implementorsยง