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

Method path

rust/src/repository.rs:41–45  ·  view source on GitHub ↗

String local path to store the given plugin repository

(&self)

Source from the content-addressed store, hash-verified

39
40 /// String local path to store the given plugin repository
41 pub fn path(&self) -> BnString {
42 let result = unsafe { BNRepositoryGetRepoPath(self.handle.as_ptr()) };
43 assert!(!result.is_null());
44 unsafe { BnString::from_raw(result as *mut c_char) }
45 }
46
47 /// List of RepoPlugin objects contained within this repository
48 pub fn plugins(&self) -> Array<RepositoryPlugin> {

Callers 1

fmtMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected