1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-03 16:44:06 +02:00

borrow data

This commit is contained in:
Robin Appelman 2020-12-05 22:48:40 +01:00
commit 0c8d2ebe18
9 changed files with 195 additions and 167 deletions

View file

@ -0,0 +1,10 @@
#![allow(dead_code)]
#![allow(unreachable_patterns)]
use bitbuffer_derive::BitRead;
#[derive(BitRead)]
struct TestStruct {
foo: u8,
str: String,
}