Builder: set the remote name or URL.
(mut self, remote: impl Into<String>)
| 161 | |
| 162 | /// Builder: set the remote name or URL. |
| 163 | pub fn with_remote(mut self, remote: impl Into<String>) -> Self { |
| 164 | self.remote = remote.into(); |
| 165 | self |
| 166 | } |
| 167 | |
| 168 | /// Builder: set the remote view to push to. |
| 169 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls