silx_types/types/nalgebra/hack/mod.rs
1/// implement IntoSlx for Const, ArrayStorage and matrices
2mod slx_from;
3/// implement SlxInto for Const, ArrayStorage and matrices
4mod slx_into;
5/// implement nalgebra storage traits for `ArchRefArrayStorageSlx`
6mod arch_array_storage;
7/// implement nalgebra mutable storage traits for `ArchMutArrayStorageSlx`
8mod arch_mut_array_storage;
9/// implement `rkyv::Archive`, `rkyv::Serialize` and `rkyv::Deserialize` for `ConstSlx` and `ArrayStorageSlx`
10mod impl_rkyv;
11
12use super::{
13 ConstSlx, ArrayStorageSlx, ArchRefArrayStorageSlx, ArchMutArrayStorageSlx, SlxInto, SlxFrom,
14};
15