support raw identifiers in the derive macro
Closed this issue · 0 comments
pacak commented
#[derive(Bpaf)]
struct Opts {
r#in: PathBuf
}
then it generates a flag like --r#in
whereas I'd have expected --in
, is this intended?
Closed this issue · 0 comments
#[derive(Bpaf)]
struct Opts {
r#in: PathBuf
}
then it generates a flag like --r#in
whereas I'd have expected --in
, is this intended?