Skip to main content

PageRange

Type Alias PageRange 

Source
pub type PageRange = Range<usize>;
Expand description

Alias used for chapter page slicing.

Aliased Type§

pub struct PageRange {
    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).