1 2 3 4 5 6 7
use crate::ooz; pub(crate) trait SafeBuf: bytes::Buf { fn get_byte(&mut self) -> ooz::error::Res<u8> { self.re } }