(&self, other: &Self)
| 143 | |
| 144 | impl<T: CursorValues> Ord for Cursor<T> { |
| 145 | fn cmp(&self, other: &Self) -> Ordering { |
| 146 | T::compare(&self.values, self.offset, &other.values, other.offset) |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /// Implements [`CursorValues`] for [`Rows`] |
no test coverage detected