Skip to main content

LineRange

Type Alias LineRange 

Source
pub type LineRange = FormatRange;
Expand description

A line range (1-based, inclusive [first, last]).

Aliased Type§

pub struct LineRange {
    pub first: usize,
    pub last: usize,
}

Fields§

§first: usize

The first (inclusive) of the range.

§last: usize

The last (inclusive) of the range.