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