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::MbufDataChunk;

impl Deref for MbufDataChunk<'_> {
    type Target = [u8];

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