person_struct_parser 1.3.1

Rust parser for person struct
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use person_struct_parser::person_module::*;

#[cfg(test)]
mod file_tests {
    use super::*;

    #[test]
    fn write_parsed_person_to_file() -> anyhow::Result<()> {
        let _ = write_to_file(
            "Example.txt",
            "Mi*/-ke3**/5*/New* Y/o*rK*.45s6ssx-75+0584759856",
        );
        Ok(())
    }
}