1 2 3 4 5 6 7
use crate::BorrowedDataChunk; impl AsRef<[u8]> for BorrowedDataChunk<'_> { fn as_ref(&self) -> &[u8] { self.data } }