1 2 3 4 5 6 7 8
#[derive(Debug, PartialEq)] enum Ini { LineBreak, Comment(String), Value(String), Property(String, Vec<Ini>), Section(String, Vec<Ini>), }