pub trait IResourceLocationBaseMethods: IResourceLocationBase {
Show 14 methods
// Provided methods
fn get_internal_id(self) -> Il2CppString { ... }
fn get_provider_id(self) -> Il2CppString { ... }
fn get_dependencies(self) -> IList_1_Interface<IResourceLocation> { ... }
fn get_has_dependencies(self) -> bool { ... }
fn get_data(self) -> Object { ... }
fn set_data(self, value: impl Into<Object>) { ... }
fn get_primary_key(self) -> Il2CppString { ... }
fn set_primary_key(self, value: impl Into<Il2CppString>) { ... }
fn get_dependency_hash_code(self) -> i32 { ... }
fn get_resource_type(self) -> SystemType { ... }
fn hash(self, t: impl Into<SystemType>) -> i32 { ... }
fn to_string(self) -> Il2CppString { ... }
fn ctor(
self,
name: impl Into<Il2CppString>,
id: impl Into<Il2CppString>,
provider_id: impl Into<Il2CppString>,
t: impl Into<SystemType>,
dependencies: impl Into<Array<IResourceLocation>>,
) { ... }
fn compute_dependency_hash(self) { ... }
}Provided Methods§
Sourcefn get_internal_id(self) -> Il2CppString
fn get_internal_id(self) -> Il2CppString
get_InternalId() overload
Sourcefn get_provider_id(self) -> Il2CppString
fn get_provider_id(self) -> Il2CppString
get_ProviderId() overload
Sourcefn get_dependencies(self) -> IList_1_Interface<IResourceLocation>
fn get_dependencies(self) -> IList_1_Interface<IResourceLocation>
get_Dependencies() overload
Sourcefn get_has_dependencies(self) -> bool
fn get_has_dependencies(self) -> bool
get_HasDependencies() overload
Sourcefn get_primary_key(self) -> Il2CppString
fn get_primary_key(self) -> Il2CppString
get_PrimaryKey() overload
Sourcefn set_primary_key(self, value: impl Into<Il2CppString>)
fn set_primary_key(self, value: impl Into<Il2CppString>)
set_PrimaryKey(::unity::Il2CppString) overload
Sourcefn get_dependency_hash_code(self) -> i32
fn get_dependency_hash_code(self) -> i32
get_DependencyHashCode() overload
Sourcefn get_resource_type(self) -> SystemType
fn get_resource_type(self) -> SystemType
get_ResourceType() overload
Sourcefn to_string(self) -> Il2CppString
fn to_string(self) -> Il2CppString
ToString() overload
Sourcefn ctor(
self,
name: impl Into<Il2CppString>,
id: impl Into<Il2CppString>,
provider_id: impl Into<Il2CppString>,
t: impl Into<SystemType>,
dependencies: impl Into<Array<IResourceLocation>>,
)
fn ctor( self, name: impl Into<Il2CppString>, id: impl Into<Il2CppString>, provider_id: impl Into<Il2CppString>, t: impl Into<SystemType>, dependencies: impl Into<Array<IResourceLocation>>, )
.ctor(::unity::Il2CppString, ::unity::Il2CppString, ::unity::Il2CppString, ::unity::SystemType, ::unity::Array<crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation>) overload
Sourcefn compute_dependency_hash(self)
fn compute_dependency_hash(self)
ComputeDependencyHash() 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: IResourceLocationBase> IResourceLocationBaseMethods for __T
Available on crate feature
unity_engine-resource_management-resource_locations-resourcelocationbase only.