pub trait IResourceManagerDiagnosticsMethods: IResourceManagerDiagnostics {
// Provided methods
fn ctor(self, resource_manager: impl Into<ResourceManager>) { ... }
fn sum_dependency_name_hash_codes(
self,
handle: impl Into<AsyncOperationHandle>,
) -> i32 { ... }
fn calculate_hash_code(self, handle: impl Into<AsyncOperationHandle>) -> i32 { ... }
fn on_resource_manager_diagnostic_event(
self,
event_context: impl Into<ResourceManager_DiagnosticEventContext>,
) { ... }
fn dispose(self) { ... }
}Provided Methods§
Sourcefn ctor(self, resource_manager: impl Into<ResourceManager>)
fn ctor(self, resource_manager: impl Into<ResourceManager>)
.ctor(crate::unity_engine::resource_management::resourcemanager::ResourceManager) overload
Sourcefn sum_dependency_name_hash_codes(
self,
handle: impl Into<AsyncOperationHandle>,
) -> i32
fn sum_dependency_name_hash_codes( self, handle: impl Into<AsyncOperationHandle>, ) -> i32
SumDependencyNameHashCodes(crate::unity_engine::resource_management::async_operations::asyncoperationhandle::AsyncOperationHandle) overload
Sourcefn calculate_hash_code(self, handle: impl Into<AsyncOperationHandle>) -> i32
fn calculate_hash_code(self, handle: impl Into<AsyncOperationHandle>) -> i32
CalculateHashCode(crate::unity_engine::resource_management::async_operations::asyncoperationhandle::AsyncOperationHandle) overload
Sourcefn on_resource_manager_diagnostic_event(
self,
event_context: impl Into<ResourceManager_DiagnosticEventContext>,
)
fn on_resource_manager_diagnostic_event( self, event_context: impl Into<ResourceManager_DiagnosticEventContext>, )
OnResourceManagerDiagnosticEvent(crate::unity_engine::resource_management::resourcemanager::ResourceManager_DiagnosticEventContext) 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: IResourceManagerDiagnostics> IResourceManagerDiagnosticsMethods for __T
Available on crate feature
unity_engine-addressable_assets-utility-resourcemanagerdiagnostics only.