(&self)
| 114 | |
| 115 | impl RangeBounds<u64> for RangeFromMaybeToInclusive { |
| 116 | fn start_bound(&self) -> Bound<&u64> { |
| 117 | Bound::Included(&self.start) |
| 118 | } |
| 119 | |
| 120 | fn end_bound(&self) -> Bound<&u64> { |
| 121 | self.end.as_ref().map(Bound::Included).unwrap_or(Bound::Unbounded) |
no outgoing calls
no test coverage detected