ps_datachunk/cow/implementations/from/
borrowed.rs

1use crate::{BorrowedDataChunk, CowDataChunk};
2
3impl<'lt> From<BorrowedDataChunk<'lt>> for CowDataChunk<'lt> {
4    fn from(value: BorrowedDataChunk<'lt>) -> Self {
5        Self::Borrowed(value)
6    }
7}