ps-datachunk 0.1.0-35

Chunk-based data encrypter
Documentation
1
2
3
4
5
6
7
use crate::{BorrowedDataChunk, CowDataChunk};

impl<'lt> From<BorrowedDataChunk<'lt>> for CowDataChunk<'lt> {
    fn from(value: BorrowedDataChunk<'lt>) -> Self {
        Self::Borrowed(value)
    }
}