Struct tokio::prelude::task::UnparkEvent [−][src]
pub struct UnparkEvent { /* fields omitted */ }Deprecated
: recommended to use FuturesUnordered instead
A set insertion to trigger upon unpark.
Unpark events are used to communicate information about why an unpark
occurred, in particular populating sets with event identifiers so that the
unparked task can avoid extraneous polling. See with_unpark_event for
more.
Methods
impl UnparkEvent[src]
impl UnparkEventpub fn new(set: Arc<EventSet + 'static>, id: usize) -> UnparkEvent[src]
pub fn new(set: Arc<EventSet + 'static>, id: usize) -> UnparkEventDeprecated
: recommended to use FuturesUnordered instead
Construct an unpark event that will insert id into set when
triggered.
Trait Implementations
impl Clone for UnparkEvent[src]
impl Clone for UnparkEventfn clone(&self) -> UnparkEvent[src]
fn clone(&self) -> UnparkEventReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for UnparkEvent[src]
impl Debug for UnparkEventAuto Trait Implementations
impl Send for UnparkEvent
impl Send for UnparkEventimpl Sync for UnparkEvent
impl Sync for UnparkEvent