ps-datachunk 0.1.0-35

Chunk-based data encrypter
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::ops::Deref;

use crate::OwnedDataChunk;

impl Deref for OwnedDataChunk {
    type Target = [u8];

    fn deref(&self) -> &Self::Target {
        &self.data
    }
}