1 2 3 4 5 6 7 8 9 10 11
// #[derive(Debug)] pub(super) struct Inner { pub(super) bytes: Vec<u8>, } impl Inner { pub(super) fn new(bytes: Vec<u8>) -> Self { Self { bytes } } }