(&self, item: &u64)
| 104 | } |
| 105 | |
| 106 | pub fn contains(&self, item: &u64) -> bool { |
| 107 | item >= &self.start |
| 108 | && match &self.end { |
| 109 | None => true, |
| 110 | Some(end) => item <= end, |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | impl RangeBounds<u64> for RangeFromMaybeToInclusive { |
no outgoing calls
no test coverage detected