Enum synchronoise::SignalKind [] [src]

pub enum SignalKind {
    Auto,
    Manual,
}

Determines the reset behavior of a SignalEvent.

Variants

An activated SignalEvent automatically resets when a thread is resumed.

SignalEvents with this kind will only resume one thread at a time.

An activated SignalEvent must be manually reset to block threads again.

SignalEvents with this kind will signal every waiting thread to continue at once.

Trait Implementations

impl Debug for SignalKind
[src]

Formats the value using the given formatter.

impl PartialEq for SignalKind
[src]

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

This method tests for !=.

impl Copy for SignalKind
[src]

impl Clone for SignalKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more