1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use super::memory_block::*; #[repr(C)] pub struct TPRawArray<'a, L, E> where Self: 'a, L: Clone, { data: &'a mut TPArrayBlock<L, E>, } #[repr(C)] pub struct FPRawArray<'a, L, E> where Self: 'a, L: Clone, { data: &'a mut FPArrayBlock<L, E>, }