Closed
Description
What problem does this solve or what need does it fill?
We have a Reflect impl for Range
presently, but there are other range types that aren't covered:
RangeInclusive
(what I'm looking for presently)RangeFrom
RangeTo
RangeToInclusive
RangeFull
(probably not needed TBH, but listed for exhaustiveness)
What solution would you like?
Add Reflect
impls for the types listed above.
What alternative(s) have you considered?
Use Range
instead, however Range
isn't always exactly correct for a given problem.