(mut self, view: impl Into<String>)
| 183 | /// Set the target view. If not set, uses the current view. |
| 184 | #[must_use] |
| 185 | pub fn view(mut self, view: impl Into<String>) -> Self { |
| 186 | self.view = Some(view.into()); |
| 187 | self |
| 188 | } |
| 189 | |
| 190 | /// Set the change message. |
| 191 | #[must_use] |
no outgoing calls