Set the file size.
(mut self, size: u64)
| 196 | |
| 197 | /// Set the file size. |
| 198 | pub fn with_size(mut self, size: u64) -> Self { |
| 199 | self.size = Some(size); |
| 200 | self |
| 201 | } |
| 202 | |
| 203 | /// Set the modification time. |
| 204 | pub fn with_mtime(mut self, mtime: SystemTime) -> Self { |
no outgoing calls