Type Alias gridly::range::RowRangeError

source ·
pub type RowRangeError = RangeError<Row>;

Aliased Type§

enum RowRangeError {
    TooLow(Row),
    TooHigh(Row),
}

Variants§

§

TooLow(Row)

The given row or column was too low. The value in the error is the minimum row or column, inclusive.

§

TooHigh(Row)

The given row or column was too high. The given value in the error is the maximum row or column, exclusive (that is, a value equal to the error value is considered too high).