MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / full_path

Method full_path

rust/src/repository.rs:68–72  ·  view source on GitHub ↗

TODO: Make this a PathBuf? String full path the repository

(&self)

Source from the content-addressed store, hash-verified

66 // TODO: Make this a PathBuf?
67 /// String full path the repository
68 pub fn full_path(&self) -> BnString {
69 let result = unsafe { BNRepositoryGetPluginsPath(self.handle.as_ptr()) };
70 assert!(!result.is_null());
71 unsafe { BnString::from_raw(result as *mut c_char) }
72 }
73}
74
75impl Debug for Repository {

Callers 2

fmtMethod · 0.45
test_listFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_listFunction · 0.36