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),
}
pub type RepeatResult<T> = Result<T, RepeatError>;
Shorthand for a Result
where the error type is a RepeatError
.
enum RepeatResult<T> {
Ok(T),
Err(RepeatError),
}