Enum synchronoise::CountdownError [] [src]

pub enum CountdownError {
    SaturatedCounter,
    TooManySignals,
    AlreadySet,
}

The collection of errors that can be returned by CountdownEvent methods.

Variants

Returned when adding to a counter would have caused it to overflow.

Returned when attempting to signal would have caused the counter to go below zero.

Returned when attempting to modify the counter after it has reached zero.