Set the file size.
(mut self, size: u64)
| 746 | |
| 747 | /// Set the file size. |
| 748 | pub fn with_size(mut self, size: u64) -> Self { |
| 749 | self.size = Some(size); |
| 750 | self |
| 751 | } |
| 752 | |
| 753 | /// Set the modification time. |
| 754 | pub fn with_mtime(mut self, mtime: std::time::SystemTime) -> Self { |
no outgoing calls