(mut self, description: &str)
| 637 | } |
| 638 | |
| 639 | pub fn description(mut self, description: &str) -> Self { |
| 640 | self.description = Some(description.to_string()); |
| 641 | self |
| 642 | } |
| 643 | |
| 644 | pub fn usage(mut self, usage: &str) -> Self { |
| 645 | self.usage = Some(usage.to_string()); |