Builder: set the remote view to push to.
(mut self, view: impl Into<String>)
| 199 | |
| 200 | /// Builder: set the remote view to push to. |
| 201 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
| 202 | self.to_view = Some(view.into()); |
| 203 | self |
| 204 | } |
| 205 | |
| 206 | /// Builder: set the local view to push from. |
| 207 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls