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