type CheckSequenceResult = Result<(bool, bool, Option<String>)>;Expand description
Mirrors check_sequence’s return: (success, replayed_entirely, optional_reason).
Aliased Type§
enum CheckSequenceResult {
Ok((bool, bool, Option<String>)),
Err(Report),
}Variants§
Ok((bool, bool, Option<String>))
Contains the success value
Err(Report)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.