Builder: set the remote view to push to.
(mut self, view: impl Into<String>)
| 168 | |
| 169 | /// Builder: set the remote view to push to. |
| 170 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
| 171 | self.to_view = Some(view.into()); |
| 172 | self |
| 173 | } |
| 174 | |
| 175 | /// Builder: set the local view to push from. |
| 176 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls