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

Method plugins

rust/src/repository.rs:48–53  ·  view source on GitHub ↗

List of RepoPlugin objects contained within this repository

(&self)

Source from the content-addressed store, hash-verified

46
47 /// List of RepoPlugin objects contained within this repository
48 pub fn plugins(&self) -> Array<RepositoryPlugin> {
49 let mut count = 0;
50 let result = unsafe { BNRepositoryGetPlugins(self.handle.as_ptr(), &mut count) };
51 assert!(!result.is_null());
52 unsafe { Array::new(result, count, ()) }
53 }
54
55 pub fn plugin_by_path<S: BnStrCompatible>(&self, path: S) -> Option<Ref<RepositoryPlugin>> {
56 let path = path.into_bytes_with_nul();

Callers 2

fmtMethod · 0.45
test_listFunction · 0.45

Calls

no outgoing calls

Tested by 1

test_listFunction · 0.36