| 158 | |
| 159 | #[derive(Clone, Debug)] |
| 160 | pub struct FileHandle { |
| 161 | pub meta_path: PathBuf, |
| 162 | pub path: PathBuf, |
| 163 | pub amt: usize, |
| 164 | pub crc: u32, |
| 165 | running: Arc<AtomicBool>, |
| 166 | } |
| 167 | |
| 168 | impl Drop for FileHandle { |
| 169 | fn drop(&mut self) { |
nothing calls this directly
no outgoing calls
no test coverage detected