Builder: set the usage context.
(mut self, usage: impl Into<String>)
| 303 | |
| 304 | /// Builder: set the usage context. |
| 305 | pub fn with_usage(mut self, usage: impl Into<String>) -> Self { |
| 306 | self.usage = Some(usage.into()); |
| 307 | self |
| 308 | } |
| 309 | |
| 310 | /// Builder: set the edit flag. |
| 311 | pub fn with_edit(mut self, edit: bool) -> Self { |
no outgoing calls