TimerResult

Type Alias TimerResult 

Source
pub type TimerResult<R> = Result<R, TimerError>;
Expand description

Alias for the Result used by timer queues.

Aliased Type§

pub enum TimerResult<R> {
    Ok(R),
    Err(TimerError),
}

Variants§

§1.0.0

Ok(R)

Contains the success value

§1.0.0

Err(TimerError)

Contains the error value