Skip to main content

ps_datachunk/encrypted/implementations/
as_ref.rs

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