pub type PathRange<const MCL: usize, const MCC: usize, const MPL: usize> = WillowRange<Path<MCL, MCC, MPL>>;Expand description
A WillowRange of Paths.
Aliased Type§
#[repr(C)]pub enum PathRange<const MCL: usize, const MCC: usize, const MPL: usize> {
Closed(ClosedRange<Path<MCL, MCC, MPL>>),
Open(Path<MCL, MCC, MPL>),
}Variants§
Closed(ClosedRange<Path<MCL, MCC, MPL>>)
A closed range with an inclusive start value and an exclusive end value.
Open(Path<MCL, MCC, MPL>)
An open range with an inclusive start value.
It includes all values greater than or equal to that start value.