essential_constraint_vm::error

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.6.0

Ok(T)

Contains the success value

§1.6.0

Err(RepeatError)

Contains the error value