(mut self, view: impl Into<String>)
| 175 | /// Set the target view. If not set, uses the current view. |
| 176 | #[must_use] |
| 177 | pub fn view(mut self, view: impl Into<String>) -> Self { |
| 178 | self.view = Some(view.into()); |
| 179 | self |
| 180 | } |
| 181 | |
| 182 | /// Set the change message. |
| 183 | #[must_use] |
no outgoing calls