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