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