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),
}