pub trait IDependenciesCacheKeyMethods: IDependenciesCacheKey {
// Provided methods
fn ctor(
self,
dependencies: impl Into<IList_1_Interface<IResourceLocation>>,
dependencies_hash: impl Into<i32>,
) { ... }
fn get_hash_code(self) -> i32 { ... }
fn equals(self, obj: impl Into<Object>) -> bool { ... }
fn equals_2(self, other: impl Into<IOperationCacheKey>) -> bool { ... }
fn equals_3(self, other: impl Into<DependenciesCacheKey>) -> bool { ... }
}Provided Methods§
Sourcefn ctor(
self,
dependencies: impl Into<IList_1_Interface<IResourceLocation>>,
dependencies_hash: impl Into<i32>,
)
fn ctor( self, dependencies: impl Into<IList_1_Interface<IResourceLocation>>, dependencies_hash: impl Into<i32>, )
.ctor(crate::system::collections::generic::ilist_1_interface::IList_1_Interface<crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation>, i32) overload
Sourcefn get_hash_code(self) -> i32
fn get_hash_code(self) -> i32
GetHashCode() overload
Sourcefn equals_2(self, other: impl Into<IOperationCacheKey>) -> bool
fn equals_2(self, other: impl Into<IOperationCacheKey>) -> bool
Equals(crate::unity_engine::resource_management::util::ioperationcachekey::IOperationCacheKey) overload
Sourcefn equals_3(self, other: impl Into<DependenciesCacheKey>) -> bool
fn equals_3(self, other: impl Into<DependenciesCacheKey>) -> bool
Equals(crate::unity_engine::resource_management::util::dependenciescachekey::DependenciesCacheKey) 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: IDependenciesCacheKey> IDependenciesCacheKeyMethods for __T
Available on crate feature
unity_engine-resource_management-util-dependenciescachekey only.