```rust #[repr(C, packed)] struct Date { #[bits(5)] day: libc::c_uchar, #[bits(4)] month: libc::c_uchar, #[bits(15)] year: libc::c_short, } ```