├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── MSRV.md ├── README.md ├── examples ├── basic │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs ├── full-derive │ ├── Cargo.toml │ ├── README.md │ └── src │ │ └── main.rs └── full │ ├── Cargo.toml │ ├── README.md │ └── src │ └── main.rs ├── onlyargs_derive ├── Cargo.toml ├── README.md ├── compile_tests │ ├── compiler.rs │ ├── conflicting_positional.rs │ ├── conflicting_positional.stderr │ ├── conflicting_short_name.rs │ ├── conflicting_short_name.stderr │ ├── default_bool_false.rs │ ├── default_bool_true.rs │ ├── default_f32.rs │ ├── default_f64.rs │ ├── default_i128.rs │ ├── default_i8.rs │ ├── default_isize.rs │ ├── default_multivalue.rs │ ├── default_multivalue.stderr │ ├── default_negative_i128.rs │ ├── default_negative_i8.rs │ ├── default_negative_isize.rs │ ├── default_option.rs │ ├── default_option.stderr │ ├── default_osstring.rs │ ├── default_pathbuf.rs │ ├── default_positional.rs │ ├── default_positional.stderr │ ├── default_string.rs │ ├── default_u128.rs │ ├── default_u8.rs │ ├── default_usize.rs │ ├── empty.rs │ ├── ignore_short_name.rs │ ├── manual_short_name.rs │ ├── multivalue_f32.rs │ ├── multivalue_f64.rs │ ├── multivalue_i128.rs │ ├── multivalue_i8.rs │ ├── multivalue_isize.rs │ ├── multivalue_osstring.rs │ ├── multivalue_pathbuf.rs │ ├── multivalue_string.rs │ ├── multivalue_u128.rs │ ├── multivalue_u8.rs │ ├── multivalue_usize.rs │ ├── optional.rs │ ├── positional_f32.rs │ ├── positional_f64.rs │ ├── positional_i128.rs │ ├── positional_i8.rs │ ├── positional_isize.rs │ ├── positional_option.rs │ ├── positional_option.stderr │ ├── positional_osstring.rs │ ├── positional_pathbuf.rs │ ├── positional_single_bool.rs │ ├── positional_single_bool.stderr │ ├── positional_single_string.rs │ ├── positional_single_string.stderr │ ├── positional_string.rs │ ├── positional_u128.rs │ ├── positional_u8.rs │ ├── positional_usize.rs │ ├── required_bool.rs │ ├── required_bool.stderr │ ├── required_option.rs │ ├── required_option.stderr │ ├── required_string.rs │ ├── required_string.stderr │ ├── struct_doc_comment.rs │ └── struct_footer.rs ├── src │ ├── lib.rs │ └── parser.rs └── tests │ └── parsing.rs └── src ├── lib.rs └── traits.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/LICENSE -------------------------------------------------------------------------------- /MSRV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/MSRV.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/README.md -------------------------------------------------------------------------------- /examples/basic/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/basic/Cargo.toml -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/basic/src/main.rs -------------------------------------------------------------------------------- /examples/full-derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full-derive/Cargo.toml -------------------------------------------------------------------------------- /examples/full-derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full-derive/README.md -------------------------------------------------------------------------------- /examples/full-derive/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full-derive/src/main.rs -------------------------------------------------------------------------------- /examples/full/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full/Cargo.toml -------------------------------------------------------------------------------- /examples/full/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full/README.md -------------------------------------------------------------------------------- /examples/full/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/examples/full/src/main.rs -------------------------------------------------------------------------------- /onlyargs_derive/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/Cargo.toml -------------------------------------------------------------------------------- /onlyargs_derive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/README.md -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/compiler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/compiler.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/conflicting_positional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/conflicting_positional.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/conflicting_positional.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/conflicting_positional.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/conflicting_short_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/conflicting_short_name.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/conflicting_short_name.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/conflicting_short_name.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_bool_false.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_bool_false.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_bool_true.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_bool_true.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_f32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_f32.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_f64.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_i128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_i128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_i8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_i8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_isize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_isize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_multivalue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_multivalue.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_multivalue.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_multivalue.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_negative_i128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_negative_i128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_negative_i8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_negative_i8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_negative_isize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_negative_isize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_option.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_option.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_option.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_osstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_osstring.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_pathbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_pathbuf.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_positional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_positional.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_positional.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_positional.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_string.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_u128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_u128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_u8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_u8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/default_usize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/default_usize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/empty.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/ignore_short_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/ignore_short_name.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/manual_short_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/manual_short_name.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_f32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_f32.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_f64.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_i128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_i128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_i8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_i8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_isize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_isize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_osstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_osstring.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_pathbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_pathbuf.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_string.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_u128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_u128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_u8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_u8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/multivalue_usize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/multivalue_usize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/optional.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/optional.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_f32.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_f32.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_f64.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_f64.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_i128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_i128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_i8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_i8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_isize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_isize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_option.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_option.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_option.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_osstring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_osstring.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_pathbuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_pathbuf.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_single_bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_single_bool.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_single_bool.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_single_bool.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_single_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_single_string.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_single_string.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_single_string.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_string.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_u128.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_u128.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_u8.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_u8.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/positional_usize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/positional_usize.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_bool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_bool.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_bool.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_bool.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_option.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_option.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_option.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_option.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_string.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/required_string.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/required_string.stderr -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/struct_doc_comment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/struct_doc_comment.rs -------------------------------------------------------------------------------- /onlyargs_derive/compile_tests/struct_footer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/compile_tests/struct_footer.rs -------------------------------------------------------------------------------- /onlyargs_derive/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/src/lib.rs -------------------------------------------------------------------------------- /onlyargs_derive/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/src/parser.rs -------------------------------------------------------------------------------- /onlyargs_derive/tests/parsing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/onlyargs_derive/tests/parsing.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/parasyte/onlyargs/HEAD/src/traits.rs --------------------------------------------------------------------------------