Builder: set the usage context.
(mut self, usage: impl Into<String>)
| 295 | |
| 296 | /// Builder: set the usage context. |
| 297 | pub fn with_usage(mut self, usage: impl Into<String>) -> Self { |
| 298 | self.usage = Some(usage.into()); |
| 299 | self |
| 300 | } |
| 301 | |
| 302 | /// Builder: set the edit flag. |
| 303 | pub fn with_edit(mut self, edit: bool) -> Self { |
no outgoing calls