String URL of the git repository where the plugin repository's are stored
(&self)
| 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 { |