1use core::ops::{Deref, DerefMut};
6
7pub enum BitsWrapper<'a, T> {
10 Owned(T),
11 Borrowed(&'a mut T),
12}
13impl<B> Deref for BitsWrapper<'_, B> {
14 type Target = B;
15
16 fn deref(&self) -> &Self::Target {
17 match self {
18 BitsWrapper::Borrowed(v) => v,
19 BitsWrapper::Owned(v) => v,
20 }
21 }
22}
23impl<B> DerefMut for BitsWrapper<'_, B> {
24 fn deref_mut(&mut self) -> &mut Self::Target {
25 match self {
26 BitsWrapper::Borrowed(v) => v,
27 BitsWrapper::Owned(v) => v,
28 }
29 }
30}
31
32#[cfg(feature = "std")]
33mod stds {
34 use crate::{Bits, BitsWrapper, Error, MutBits};
35
36 impl<T> Bits for BitsWrapper<'_, T>
37 where
38 T: std::io::Read,
39 {
40 fn next_u8(&mut self) -> Result<Option<u8>, Error> {
41 let mut byte: u8 = 0;
42 let read = self.read(core::slice::from_mut(&mut byte))?;
43 if read < 1 {
44 return Ok(None);
45 }
46 Ok(Some(byte))
47 }
48 }
49
50 impl<T> MutBits for BitsWrapper<'_, T>
51 where
52 T: std::io::Write,
53 {
54 fn write_u8(&mut self, val: u8) -> Result<(), Error> {
55 Ok(self.write_all(&[val])?)
56 }
57 }
58}