person_struct_parser 0.4.1

Rust parser for person struct #parser #grammar #person_struct
Documentation
1
2
3
4
5
6
7
8
9
10
use person_struct_parser::person_module::*;

pub fn main() {
    let _person: Person = Person {
        name: String::from("Ivanna"),
        age: 25,
        city: String::from("Kyiv"),
    };
    println!("Welcome!");
}