1
2
3
4
5
6
pub trait TomlExample {
    /// structure to toml example
    fn to_example() -> String {
        "".to_string()
    }
}