(&self, guid: P)
| 1494 | } |
| 1495 | |
| 1496 | fn remove_component_by_guid<P: IntoComponentGuid>(&self, guid: P) -> bool { |
| 1497 | let path = guid.component_guid(); |
| 1498 | unsafe { BNRemoveComponentByGuid(self.as_ref().handle, path.as_ptr()) } |
| 1499 | } |
| 1500 | |
| 1501 | fn data_variable_parent_components(&self, data_variable: &DataVariable) -> Array<Component> { |
| 1502 | let mut count = 0; |
nothing calls this directly
no test coverage detected