pub trait IResourceLocationDataMethods: IResourceLocationData {
// Provided methods
fn get_keys(self) -> Array<Il2CppString> { ... }
fn get_internal_id(self) -> Il2CppString { ... }
fn get_provider(self) -> Il2CppString { ... }
fn get_dependencies(self) -> Array<Il2CppString> { ... }
fn get_resource_type(self) -> SystemType { ... }
fn get_data(self) -> Object { ... }
fn set_data(self, value: impl Into<Object>) { ... }
fn ctor(
self,
keys: impl Into<Array<Il2CppString>>,
id: impl Into<Il2CppString>,
provider: impl Into<SystemType>,
t: impl Into<SystemType>,
dependencies: impl Into<Array<Il2CppString>>,
) { ... }
}Provided Methods§
Sourcefn get_keys(self) -> Array<Il2CppString>
fn get_keys(self) -> Array<Il2CppString>
get_Keys() overload
Sourcefn get_internal_id(self) -> Il2CppString
fn get_internal_id(self) -> Il2CppString
get_InternalId() overload
Sourcefn get_provider(self) -> Il2CppString
fn get_provider(self) -> Il2CppString
get_Provider() overload
Sourcefn get_dependencies(self) -> Array<Il2CppString>
fn get_dependencies(self) -> Array<Il2CppString>
get_Dependencies() overload
Sourcefn get_resource_type(self) -> SystemType
fn get_resource_type(self) -> SystemType
get_ResourceType() overload
Sourcefn ctor(
self,
keys: impl Into<Array<Il2CppString>>,
id: impl Into<Il2CppString>,
provider: impl Into<SystemType>,
t: impl Into<SystemType>,
dependencies: impl Into<Array<Il2CppString>>,
)
fn ctor( self, keys: impl Into<Array<Il2CppString>>, id: impl Into<Il2CppString>, provider: impl Into<SystemType>, t: impl Into<SystemType>, dependencies: impl Into<Array<Il2CppString>>, )
.ctor(::unity::Array<::unity::Il2CppString>, ::unity::Il2CppString, ::unity::SystemType, ::unity::SystemType, ::unity::Array<::unity::Il2CppString>) 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: IResourceLocationData> IResourceLocationDataMethods for __T
Available on crate feature
unity_engine-addressable_assets-resource_locators-resourcelocationdata only.