1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use crate::NamelistError; mod derived; mod group; mod item; pub use group::GroupSerializer; impl serde::ser::Error for NamelistError { fn custom<T>(msg: T) -> Self where T: std::fmt::Display, { NamelistError::custom(msg.to_string()) } }