├── .github └── workflows │ ├── rust-clippy.yml │ └── rust.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── src ├── attr.rs ├── bitenum.rs ├── lib.rs └── traits.rs └── tests └── test.rs /.github/workflows/rust-clippy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/.github/workflows/rust-clippy.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/src/attr.rs -------------------------------------------------------------------------------- /src/bitenum.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/src/bitenum.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/src/traits.rs -------------------------------------------------------------------------------- /tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrenger/bitfield-struct-rs/HEAD/tests/test.rs --------------------------------------------------------------------------------