Skip to main content

IResourceManagerRuntimeDataMethods

Trait IResourceManagerRuntimeDataMethods 

Source
pub trait IResourceManagerRuntimeDataMethods: IResourceManagerRuntimeData {
Show 23 methods // Provided methods fn get_build_target(self) -> Il2CppString { ... } fn set_build_target(self, value: impl Into<Il2CppString>) { ... } fn get_settings_hash(self) -> Il2CppString { ... } fn set_settings_hash(self, value: impl Into<Il2CppString>) { ... } fn get_catalog_locations(self) -> List_1<ResourceLocationData> { ... } fn get_profile_events(self) -> bool { ... } fn set_profile_events(self, value: impl Into<bool>) { ... } fn get_log_resource_manager_exceptions(self) -> bool { ... } fn set_log_resource_manager_exceptions(self, value: impl Into<bool>) { ... } fn get_initialization_objects(self) -> List_1<ObjectInitializationData> { ... } fn get_disable_catalog_update_on_startup(self) -> bool { ... } fn set_disable_catalog_update_on_startup(self, value: impl Into<bool>) { ... } fn get_is_local_catalog_in_bundle(self) -> bool { ... } fn set_is_local_catalog_in_bundle(self, value: impl Into<bool>) { ... } fn get_certificate_handler_type(self) -> SystemType { ... } fn set_certificate_handler_type(self, value: impl Into<SystemType>) { ... } fn get_addressables_version(self) -> Il2CppString { ... } fn set_addressables_version(self, value: impl Into<Il2CppString>) { ... } fn get_max_concurrent_web_requests(self) -> i32 { ... } fn set_max_concurrent_web_requests(self, value: impl Into<i32>) { ... } fn get_catalog_requests_timeout(self) -> i32 { ... } fn set_catalog_requests_timeout(self, value: impl Into<i32>) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_build_target(self) -> Il2CppString

get_BuildTarget() overload

Source

fn set_build_target(self, value: impl Into<Il2CppString>)

set_BuildTarget(::unity::Il2CppString) overload

Source

fn get_settings_hash(self) -> Il2CppString

get_SettingsHash() overload

Source

fn set_settings_hash(self, value: impl Into<Il2CppString>)

set_SettingsHash(::unity::Il2CppString) overload

Source

fn get_catalog_locations(self) -> List_1<ResourceLocationData>

get_CatalogLocations() overload

Source

fn get_profile_events(self) -> bool

get_ProfileEvents() overload

Source

fn set_profile_events(self, value: impl Into<bool>)

set_ProfileEvents(bool) overload

Source

fn get_log_resource_manager_exceptions(self) -> bool

get_LogResourceManagerExceptions() overload

Source

fn set_log_resource_manager_exceptions(self, value: impl Into<bool>)

set_LogResourceManagerExceptions(bool) overload

Source

fn get_initialization_objects(self) -> List_1<ObjectInitializationData>

get_InitializationObjects() overload

Source

fn get_disable_catalog_update_on_startup(self) -> bool

get_DisableCatalogUpdateOnStartup() overload

Source

fn set_disable_catalog_update_on_startup(self, value: impl Into<bool>)

set_DisableCatalogUpdateOnStartup(bool) overload

Source

fn get_is_local_catalog_in_bundle(self) -> bool

get_IsLocalCatalogInBundle() overload

Source

fn set_is_local_catalog_in_bundle(self, value: impl Into<bool>)

set_IsLocalCatalogInBundle(bool) overload

Source

fn get_certificate_handler_type(self) -> SystemType

get_CertificateHandlerType() overload

Source

fn set_certificate_handler_type(self, value: impl Into<SystemType>)

set_CertificateHandlerType(::unity::SystemType) overload

Source

fn get_addressables_version(self) -> Il2CppString

get_AddressablesVersion() overload

Source

fn set_addressables_version(self, value: impl Into<Il2CppString>)

set_AddressablesVersion(::unity::Il2CppString) overload

Source

fn get_max_concurrent_web_requests(self) -> i32

get_MaxConcurrentWebRequests() overload

Source

fn set_max_concurrent_web_requests(self, value: impl Into<i32>)

set_MaxConcurrentWebRequests(i32) overload

Source

fn get_catalog_requests_timeout(self) -> i32

get_CatalogRequestsTimeout() overload

Source

fn set_catalog_requests_timeout(self, value: impl Into<i32>)

set_CatalogRequestsTimeout(i32) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IResourceManagerRuntimeData> IResourceManagerRuntimeDataMethods for __T

Available on crate feature unity_engine-addressable_assets-initialization-resourcemanagerruntimedata only.