pub trait ILegacyResourcesProvider_InternalOpMethods: ILegacyResourcesProvider_InternalOp {
// Provided methods
fn start(self, provide_handle: impl Into<ProvideHandle>) { ... }
fn async_operation_completed(self, op: impl Into<AsyncOperation>) { ... }
fn percent_complete(self) -> f32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn start(self, provide_handle: impl Into<ProvideHandle>)
fn start(self, provide_handle: impl Into<ProvideHandle>)
Start(crate::unity_engine::resource_management::resource_providers::providehandle::ProvideHandle) overload
Sourcefn async_operation_completed(self, op: impl Into<AsyncOperation>)
fn async_operation_completed(self, op: impl Into<AsyncOperation>)
AsyncOperationCompleted(crate::unity_engine::asyncoperation::AsyncOperation) overload
Sourcefn percent_complete(self) -> f32
fn percent_complete(self) -> f32
PercentComplete() 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: ILegacyResourcesProvider_InternalOp> ILegacyResourcesProvider_InternalOpMethods for __T
Available on crate feature
unity_engine-resource_management-resource_providers-legacyresourcesprovider only.