Type Alias RepeatResult

Source
pub type RepeatResult<T> = Result<T, RepeatError>;
Expand description

Shorthand for a Result where the error type is a RepeatError.

Aliased Type§

enum RepeatResult<T> {
    Ok(T),
    Err(RepeatError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RepeatError)

Contains the error value