Enum parking_lot_core::FilterOp
source · [−]pub enum FilterOp {
Unpark,
Skip,
Stop,
}
Expand description
Operation that unpark_filter
should perform for each thread.
Variants
Unpark
Unpark the thread and continue scanning the list of parked threads.
Skip
Don’t unpark the thread and continue scanning the list of parked threads.
Stop
Don’t unpark the thread and stop scanning the list of parked threads.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for FilterOp
impl UnwindSafe for FilterOp
Blanket Implementations
Mutably borrows from an owned value. Read more