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