pub trait IICachableMethods: IICachable {
// Provided methods
fn get_key(self) -> IOperationCacheKey { ... }
fn set_key(self, value: impl Into<IOperationCacheKey>) { ... }
}Provided Methods§
Sourcefn get_key(self) -> IOperationCacheKey
fn get_key(self) -> IOperationCacheKey
get_Key() overload
Sourcefn set_key(self, value: impl Into<IOperationCacheKey>)
fn set_key(self, value: impl Into<IOperationCacheKey>)
set_Key(crate::unity_engine::resource_management::util::ioperationcachekey::IOperationCacheKey) 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: IICachable> IICachableMethods for __T
Available on crate feature
unity_engine-resource_management-async_operations-icachable only.