Type Alias MaybeSkipped

Source
type MaybeSkipped<T> = Result<T, Label>;
Expand description

A Result indicating that an atom may have been skipped.

This is used instead of an Option to provide information about which atom was skipped, which is useful for reporting but does not represent a failure condition.

Aliased Type§

enum MaybeSkipped<T> {
    Ok(T),
    Err(Label),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Label)

Contains the error value