person_struct_parser 1.2.6

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

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

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