pub trait IInitalizationObjectsOperationMethods: IInitalizationObjectsOperation {
// Provided methods
fn init(
self,
rtd_op: impl Into<AsyncOperationHandle_1<ResourceManagerRuntimeData>>,
addressables: impl Into<AddressablesImpl>,
) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn log_runtime_warnings(
self,
path_to_build_logs: impl Into<Il2CppString>,
) -> bool { ... }
fn invoke_wait_for_completion(self) -> bool { ... }
fn execute(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn init(
self,
rtd_op: impl Into<AsyncOperationHandle_1<ResourceManagerRuntimeData>>,
addressables: impl Into<AddressablesImpl>,
)
fn init( self, rtd_op: impl Into<AsyncOperationHandle_1<ResourceManagerRuntimeData>>, addressables: impl Into<AddressablesImpl>, )
Init(crate::unity_engine::resource_management::async_operations::asyncoperationhandle_1::AsyncOperationHandle_1<crate::unity_engine::addressable_assets::initialization::resourcemanagerruntimedata::ResourceManagerRuntimeData>, crate::unity_engine::addressable_assets::addressablesimpl::AddressablesImpl) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
get_DebugName() overload
Sourcefn log_runtime_warnings(
self,
path_to_build_logs: impl Into<Il2CppString>,
) -> bool
fn log_runtime_warnings( self, path_to_build_logs: impl Into<Il2CppString>, ) -> bool
LogRuntimeWarnings(::unity::Il2CppString) overload
Sourcefn invoke_wait_for_completion(self) -> bool
fn invoke_wait_for_completion(self) -> bool
InvokeWaitForCompletion() 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: IInitalizationObjectsOperation> IInitalizationObjectsOperationMethods for __T
Available on crate feature
unity_engine-resource_management-async_operations-initalizationobjectsoperation only.