pub type PathRange<const MCL: usize, const MCC: usize, const MPL: usize> = WillowRange<Path<MCL, MCC, MPL>>;Expand description
Aliased Type§
pub enum PathRange<const MCL: usize, const MCC: usize, const MPL: usize> {
Closed(Range<Path<MCL, MCC, MPL>>),
Open(RangeFrom<Path<MCL, MCC, MPL>>),
}Variants§
Closed(Range<Path<MCL, MCC, MPL>>)
A closed range with an inclusive start value and an exclusive end value.
Open(RangeFrom<Path<MCL, MCC, MPL>>)
An open range with an inclusive start value.