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