(&self)
| 181 | } |
| 182 | |
| 183 | pub fn view(&self) -> Option<Ref<BinaryView>> { |
| 184 | let result = unsafe { BNComponentGetView(self.handle.as_ptr()) }; |
| 185 | (!result.is_null()).then(|| unsafe { BinaryView::ref_from_raw(result) }) |
| 186 | } |
| 187 | |
| 188 | /// Is an iterator for all Components contained within this Component |
| 189 | pub fn components(&self) -> Array<Component> { |