String local path to store the given plugin repository
(&self)
| 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> { |