Enum parking_lot_core::FilterOp
[−]
[src]
pub enum FilterOp {
Unpark,
Skip,
Stop,
}Operation that unpark_filter should perform for each thread.
Variants
UnparkUnpark the thread and continue scanning the list of parked threads.
SkipDon't unpark the thread and continue scanning the list of parked threads.
StopDon't unpark the thread and stop scanning the list of parked threads.
Trait Implementations
impl Copy for FilterOp[src]
impl Clone for FilterOp[src]
fn clone(&self) -> FilterOp
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Eq for FilterOp[src]
impl PartialEq for FilterOp[src]
fn eq(&self, __arg_0: &FilterOp) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.