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: usizeThe lower bound of the range (inclusive).
end: usizeThe upper bound of the range (exclusive).