(&mut self)
| 283 | |
| 284 | impl FileAndTime { |
| 285 | fn invalidate(&mut self) { |
| 286 | // just enough so that is_valid() will say that this does match a flushed out value |
| 287 | self.files[0] = None; |
| 288 | } |
| 289 | |
| 290 | fn is_valid(&self) -> bool { |
| 291 | return self.files[0].is_some(); |
no outgoing calls