├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── TODO.md ├── src ├── attributes.rs ├── discriminant.rs ├── fish.rs ├── lib.rs ├── special_data.rs ├── tests │ ├── mod.rs │ └── test_attributes │ │ ├── attribute_modifier.rs │ │ └── mod.rs ├── ty.rs ├── unpack.rs └── unpack_context.rs └── tests ├── examples.rs └── test.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | .idea 4 | **/*.rs.bk -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/TODO.md -------------------------------------------------------------------------------- /src/attributes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/attributes.rs -------------------------------------------------------------------------------- /src/discriminant.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/discriminant.rs -------------------------------------------------------------------------------- /src/fish.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/fish.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/special_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/special_data.rs -------------------------------------------------------------------------------- /src/tests/mod.rs: -------------------------------------------------------------------------------- 1 | mod test_attributes; -------------------------------------------------------------------------------- /src/tests/test_attributes/attribute_modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/tests/test_attributes/attribute_modifier.rs -------------------------------------------------------------------------------- /src/tests/test_attributes/mod.rs: -------------------------------------------------------------------------------- 1 | mod attribute_modifier; -------------------------------------------------------------------------------- /src/ty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/ty.rs -------------------------------------------------------------------------------- /src/unpack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/unpack.rs -------------------------------------------------------------------------------- /src/unpack_context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/src/unpack_context.rs -------------------------------------------------------------------------------- /tests/examples.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/tests/examples.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snowfoxsh/nestify/HEAD/tests/test.rs --------------------------------------------------------------------------------