Builder: set the remote name or URL.
(mut self, remote: impl Into<String>)
| 196 | |
| 197 | /// Builder: set the remote name or URL. |
| 198 | pub fn with_remote(mut self, remote: impl Into<String>) -> Self { |
| 199 | self.remote = Some(remote.into()); |
| 200 | self |
| 201 | } |
| 202 | |
| 203 | /// Builder: set the local view to pull into. |
| 204 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls