Builder: set the force flag.
(mut self, force: bool)
| 145 | |
| 146 | /// Builder: set the force flag. |
| 147 | pub fn with_force(mut self, force: bool) -> Self { |
| 148 | self.force = force; |
| 149 | self |
| 150 | } |
| 151 | |
| 152 | /// Check if this is a partial restore (specific files, not the whole copy). |
| 153 | pub fn is_partial(&self) -> bool { |
no outgoing calls