Skip to main content

parse_file

Function parse_file 

Source
pub fn parse_file<P>(path: P) -> Result<FafFile, FafError>
where P: AsRef<Path>,
Expand description

Parse FAF from file path

§Example

use faf_rust_sdk::parse_file;

let faf = parse_file("project.faf").unwrap();
println!("Project: {}", faf.project_name());