usecrate::{BitBuf, Storage};impl<S: Storage>BitBuf<S>{/// Read a BE-bit-order [`u8`] from `byte_offset` without performing any bound checks
////// # Safety
////// This is UB if `byte_offset >= len(storage)`
#[inline(always)]pubunsafefnread_u8_be_aligned_full_at_unchecked(&self, byte_offset:usize)->u8{*unsafe{self.bytes().get_unchecked(byte_offset)}}}