ps_datachunk/cow/
mod.rs

1mod implementations;
2
3use crate::{BorrowedDataChunk, MbufDataChunk, OwnedDataChunk};
4
5#[derive(Clone)]
6pub enum CowDataChunk<'lt> {
7    Borrowed(BorrowedDataChunk<'lt>),
8    Mbuf(MbufDataChunk<'lt>),
9    Owned(OwnedDataChunk),
10}