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