(&self, offset: u64)
| 115 | } |
| 116 | |
| 117 | fn next_valid_offset_after(&self, offset: u64) -> u64 { |
| 118 | let start = self.as_ref().start(); |
| 119 | |
| 120 | if offset < start { |
| 121 | start |
| 122 | } else { |
| 123 | offset |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | #[allow(unused)] |
| 128 | fn modification_status(&self, offset: u64) -> ModificationStatus { |
nothing calls this directly
no test coverage detected