```no_run let headless_session = binaryninja::headless::Session::new().unwrap(); let bv = headless_session .load("/bin/cat") .expect("Couldn't open `/bin/cat`"); ```
(&self, file_path: impl AsRef<Path>)
| 372 | /// .expect("Couldn't open `/bin/cat`"); |
| 373 | /// ``` |
| 374 | pub fn load(&self, file_path: impl AsRef<Path>) -> Option<Ref<binary_view::BinaryView>> { |
| 375 | crate::load(file_path) |
| 376 | } |
| 377 | |
| 378 | /// Load the file with a progress callback, the callback will _only_ be called for BNDBs currently. |
| 379 | /// |