rsn 0.2.0

A Rust-inspired, human-readable object notation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
    BlogPost {
        id: 0,
        title: "Hello, World!",
        body: "This is a blog post.",
        category: Custom("Welcome"),
    },
    BlogPost {
        id: 1,
        title: "I love Rust",
        body: "Long live Ferris 🦀",
        category: Rust,
        previous_in_series: Some(0)
    },
]