-
I just started to use clap v3 and I really love its new features. I have one piece of code in our codebase which is still using the builder pattern and also uses |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Does this arg_enum example help? |
Beta Was this translation helpful? Give feedback.
-
I can't use |
Beta Was this translation helpful? Give feedback.
-
Once you define |
Beta Was this translation helpful? Give feedback.
-
Thanks, this helped a lot! |
Beta Was this translation helpful? Give feedback.
Once you define
#[derive(Clap)]
on the enum, you will haveYourEnum::VARIANTS
andYourEnum::from_str(input: &str, case_insensitive: bool) -> Result<Self, String>
available. You can use them.