Enum parking_lot_core::FilterOp[][src]

pub enum FilterOp {
    Unpark,
    Skip,
    Stop,
}

Operation that unpark_filter should perform for each thread.

Variants

Unpark the thread and continue scanning the list of parked threads.

Don't unpark the thread and continue scanning the list of parked threads.

Don't unpark the thread and stop scanning the list of parked threads.

Trait Implementations

impl Copy for FilterOp
[src]

impl Clone for FilterOp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Eq for FilterOp
[src]

impl PartialEq for FilterOp
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for FilterOp
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FilterOp

impl Sync for FilterOp