userange::VersionReq;/// A single range set combining a number of ranges with an or (`||`).
////// If any range in this set matches, the whole set matches.
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]pubstructComparator{/// Set of ranges.
pubranges:Vec<VersionReq>,
}