(&self)
| 384 | |
| 385 | impl Clone for RawFile { |
| 386 | fn clone(&self) -> Self { |
| 387 | RawFile { |
| 388 | file: self.file.try_clone().expect("RawFile cloning failed"), |
| 389 | alignment: self.alignment, |
| 390 | position: self.position, |
| 391 | direct_io: self.direct_io, |
| 392 | } |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | impl AsRawFd for RawFile { |
no test coverage detected