pub trait IChildSuicideMethods: IChildSuicide {
// Provided methods
fn on_transform_children_changed(self) { ... }
fn get_active_child_count(self) -> i32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_transform_children_changed(self)
fn on_transform_children_changed(self)
OnTransformChildrenChanged() overload
Sourcefn get_active_child_count(self) -> i32
fn get_active_child_count(self) -> i32
GetActiveChildCount() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IChildSuicide> IChildSuicideMethods for __T
Available on crate feature
app-childsuicide only.