Function get_file_path_binary

Source
pub fn get_file_path_binary() -> Result<String, String>
Expand description

Returns a string path pointing at the binary file created by the compilation process

§Examples

let string_path_file_binary = match get_file_path_binary() { Ok( string_result ) => { string_result } Err( err ) => { panic!( “{}”, err, ) } };