mirror of
https://codeberg.org/icewind/bitbuffer.git
synced 2026-06-04 00:54:07 +02:00
10 lines
157 B
Rust
10 lines
157 B
Rust
#![allow(dead_code)]
|
|
#![allow(unreachable_patterns)]
|
|
|
|
use bitbuffer_derive::BitRead;
|
|
|
|
#[derive(BitRead)]
|
|
struct TestStruct {
|
|
foo: u8,
|
|
str: String,
|
|
}
|