├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── README.tpl ├── codecov.yml ├── rustfmt.toml ├── scripts └── coverage.sh ├── src └── lib.rs ├── tarpaulin.toml └── tests └── basic.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/README.md -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/README.tpl -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/codecov.yml -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /scripts/coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/scripts/coverage.sh -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tarpaulin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/tarpaulin.toml -------------------------------------------------------------------------------- /tests/basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azriel91/enum_variant_type/HEAD/tests/basic.rs --------------------------------------------------------------------------------