Type Alias Column

Source
pub type Column = Range<usize>;

Aliased Type§

pub struct Column {
    pub start: usize,
    pub end: usize,
}

Fields§

§start: usize

The lower bound of the range (inclusive).

§end: usize

The upper bound of the range (exclusive).