(mut self, view: impl Into<String>)
| 190 | /// Set the target view. If not set, uses the current view. |
| 191 | #[must_use] |
| 192 | pub fn view(mut self, view: impl Into<String>) -> Self { |
| 193 | self.view = Some(view.into()); |
| 194 | self |
| 195 | } |
| 196 | |
| 197 | /// Set the change message. |
| 198 | #[must_use] |
no outgoing calls