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: usizeThe first (inclusive) of the range.
last: usizeThe last (inclusive) of the range.