pub fn parse_file<P>(path: P) -> Result<FafFile, FafError>where P: AsRef<Path>,
Parse FAF from file path
use faf_rust_sdk::parse_file; let faf = parse_file("project.faf").unwrap(); println!("Project: {}", faf.project_name());