jprops 0.1.0

reading property file in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::Properties;

impl std::fmt::Display for Properties<'_> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        for (k, v) in &self.pairs {
            writeln!(f, "{}={}", k, v)?;
        }

        Ok(())
    }
}