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