(&self)
| 87 | } |
| 88 | |
| 89 | pub fn guid(&self) -> BnString { |
| 90 | let result = unsafe { BNComponentGetGuid(self.handle.as_ptr()) }; |
| 91 | assert!(!result.is_null()); |
| 92 | unsafe { BnString::from_raw(result) } |
| 93 | } |
| 94 | |
| 95 | /// Add function to this component. |
| 96 | pub fn add_function(&self, func: &Function) -> bool { |
no outgoing calls
no test coverage detected