Builder: set the local view to pull into.
(mut self, view: impl Into<String>)
| 200 | |
| 201 | /// Builder: set the local view to pull into. |
| 202 | pub fn with_to_view(mut self, view: impl Into<String>) -> Self { |
| 203 | self.to_view = Some(view.into()); |
| 204 | self |
| 205 | } |
| 206 | |
| 207 | /// Builder: set the remote view to pull from. |
| 208 | pub fn with_from_view(mut self, view: impl Into<String>) -> Self { |
no outgoing calls