columnar 0.12.0

Conversion from arrays of complex structs to simple structs of arrays
Documentation
//! Implementations of traits for `Arc<T>`
use alloc::sync::Arc;

use crate::{Len, Borrow, AsBytes, FromBytes};

impl<T: Borrow> Borrow for Arc<T> {
    type Ref<'a> = T::Ref<'a> where T: 'a;
    type Borrowed<'a> = T::Borrowed<'a>;
    #[inline(always)] fn borrow<'a>(&'a self) -> Self::Borrowed<'a> { self.as_ref().borrow() }
    #[inline(always)] fn reborrow<'b, 'a: 'b>(item: Self::Borrowed<'a>) -> Self::Borrowed<'b> where Self: 'a { T::reborrow(item) }
    #[inline(always)] fn reborrow_ref<'b, 'a: 'b>(item: Self::Ref<'a>) -> Self::Ref<'b> where Self: 'a { T::reborrow_ref(item) }
}
impl<T: Len> Len for Arc<T> {
    #[inline(always)] fn len(&self) -> usize { self.as_ref().len() }
}
impl<'a, T: AsBytes<'a>> AsBytes<'a> for Arc<T> {
    #[inline(always)] fn as_bytes(&self) -> impl Iterator<Item=(u64, &'a [u8])> { self.as_ref().as_bytes() }
}
impl<'a, T: FromBytes<'a>> FromBytes<'a> for Arc<T> {
    const SLICE_COUNT: usize = T::SLICE_COUNT;
    #[inline(always)] fn from_bytes(bytes: &mut impl Iterator<Item=&'a [u8]>) -> Self { Arc::new(T::from_bytes(bytes)) }
    #[inline(always)] fn from_store(store: &crate::bytes::indexed::DecodedStore<'a>, offset: &mut usize) -> Self { Arc::new(T::from_store(store, offset)) }
}

#[cfg(test)]
mod tests {
    use alloc::sync::Arc;
    use alloc::{vec, vec::Vec};
    use crate::{Borrow, Len, AsBytes, FromBytes};

    #[test]
    fn test_borrow() {
        let x = Arc::new(vec![1, 2, 3]);
        let y: &[i32] = x.borrow();
        assert_eq!(y, &[1, 2, 3]);
    }

    #[test]
    fn test_len() {
        let x = Arc::new(vec![1, 2, 3]);
        assert_eq!(x.len(), 3);
    }

    #[test]
    fn test_as_from_bytes() {
        let x = Arc::new(vec![1u8, 2, 3, 4, 5]);
        let bytes: Vec<_> = x.borrow().as_bytes().map(|(_, b)| b).collect();
        let y: Arc<&[u8]> = FromBytes::from_bytes(&mut bytes.into_iter());
        assert_eq!(*x, *y);
    }

    #[test]
    fn test_borrow_tuple() {
        let x = (vec![4,5,6,7,], Arc::new(vec![1, 2, 3]));
        let y: (&[i32], &[i32]) = x.borrow();
        assert_eq!(y, ([4,5,6,7].as_ref(), [1, 2, 3].as_ref()));
    }
}