We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RethCli
with #9082 we now have a rethcli type, we need to integrate args parsing by integrating clap's parser in it.
this can be done by adding functions like
fn parse_args() -> Self where Self: Parser + Sized
https://docs.rs/clap/latest/clap/trait.Parser.html
The text was updated successfully, but these errors were encountered:
Not sure if I fully understood what you want, but I can give a try :)
Sorry, something went wrong.
for now we basically should just delegate to the clap::Parser's functions for parse from env args
we also need fn try_parse_from<I, T>(itr: I), then the parse fn simply calls this with the std::env::args_os()
leruaa
Successfully merging a pull request may close this issue.
with #9082 we now have a rethcli type, we need to integrate args parsing by integrating clap's parser in it.
this can be done by adding functions like
https://docs.rs/clap/latest/clap/trait.Parser.html
The text was updated successfully, but these errors were encountered: