type TimerWorkerResult<T> = Result<T, TimerWorkerError>;

Aliased Type§

enum TimerWorkerResult<T> {
    Ok(T),
    Err(TimerWorkerError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TimerWorkerError)

Contains the error value