Builder: set the local view to push from.
(mut self, view: impl Into<String>)
| 173 | |
| 174 | /// Builder: set the local view to push from. |
| 175 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
| 176 | self.from_view = Some(view.into()); |
| 177 | self |
| 178 | } |
| 179 | |
| 180 | /// Builder: set the dry-run flag. |
| 181 | pub fn with_dry_run(mut self, dry_run: bool) -> Self { |
no outgoing calls