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