nml 0.2.0

A parser and Serde implementation for the Fortran Namelist format
Documentation
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())
    }
}