pub trait IHierarchyCacheMethods: IHierarchyCache {
// Provided methods
fn get_dic(self) -> Dictionary_2<Il2CppString, Transform> { ... }
fn get_item(self, name: impl Into<Il2CppString>) -> Transform { ... }
fn ctor(self, root: impl Into<Transform>) { ... }
fn add_range(self, root: impl Into<Transform>) { ... }
}Provided Methods§
Sourcefn get_dic(self) -> Dictionary_2<Il2CppString, Transform>
fn get_dic(self) -> Dictionary_2<Il2CppString, Transform>
get_Dic() overload
Sourcefn get_item(self, name: impl Into<Il2CppString>) -> Transform
fn get_item(self, name: impl Into<Il2CppString>) -> Transform
get_Item(::unity::Il2CppString) 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: IHierarchyCache> IHierarchyCacheMethods for __T
Available on crate feature
combat-hierarchycache only.