1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! # Serde //! //! read from file and save to file use crate::matrix::Matrix; #[cfg(feature = "serde_mat")] impl<T, const ROW: usize, const COL: usize> Matrix<T, ROW, COL> { pub fn read() { todo!() } pub fn write() { todo!() } }