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

Method url

rust/src/repository.rs:34–38  ·  view source on GitHub ↗

String URL of the git repository where the plugin repository's are stored

(&self)

Source from the content-addressed store, hash-verified

32
33 /// String URL of the git repository where the plugin repository's are stored
34 pub fn url(&self) -> BnString {
35 let result = unsafe { BNRepositoryGetUrl(self.handle.as_ptr()) };
36 assert!(!result.is_null());
37 unsafe { BnString::from_raw(result as *mut c_char) }
38 }
39
40 /// String local path to store the given plugin repository
41 pub fn path(&self) -> BnString {

Callers 2

fmtMethod · 0.45
test_listFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_listFunction · 0.36