Type Alias gridly::range::ColumnRangeError

source ·
pub type ColumnRangeError = RangeError<Column>;

Aliased Type§

enum ColumnRangeError {
    TooLow(Column),
    TooHigh(Column),
}

Variants§

§

TooLow(Column)

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

§

TooHigh(Column)

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