Builder: set the remote view to pull from.
(mut self, view: impl Into<String>)
| 205 | |
| 206 | /// Builder: set the remote view to pull from. |
| 207 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
| 208 | self.from_view = Some(view.into()); |
| 209 | self |
| 210 | } |
| 211 | |
| 212 | /// Builder: set the dry-run flag. |
| 213 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls