(&self, _len: u64)
| 2122 | |
| 2123 | impl FileSetLen for QcowFile { |
| 2124 | fn set_len(&self, _len: u64) -> std::io::Result<()> { |
| 2125 | Err(std::io::Error::other( |
| 2126 | "set_len() not supported for QcowFile", |
| 2127 | )) |
| 2128 | } |
| 2129 | } |
| 2130 | |
| 2131 | impl PunchHole for QcowFile { |
no outgoing calls