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