pub trait IContentCatalogData_CompactLocationMethods: IContentCatalogData_CompactLocation {
// 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_dependency_hash_code(self) -> i32 { ... }
fn get_data(self) -> Object { ... }
fn get_primary_key(self) -> Il2CppString { ... }
fn set_primary_key(self, value: impl Into<Il2CppString>) { ... }
fn get_resource_type(self) -> SystemType { ... }
fn to_string(self) -> Il2CppString { ... }
fn hash(self, t: impl Into<SystemType>) -> i32 { ... }
fn ctor(
self,
locator: impl Into<ResourceLocationMap>,
internal_id: impl Into<Il2CppString>,
provider_id: impl Into<Il2CppString>,
dependency_key: impl Into<Object>,
data: impl Into<Object>,
dep_hash: impl Into<i32>,
primary_key: impl Into<Il2CppString>,
type: impl Into<SystemType>,
) { ... }
}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_dependency_hash_code(self) -> i32
fn get_dependency_hash_code(self) -> i32
get_DependencyHashCode() 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_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,
locator: impl Into<ResourceLocationMap>,
internal_id: impl Into<Il2CppString>,
provider_id: impl Into<Il2CppString>,
dependency_key: impl Into<Object>,
data: impl Into<Object>,
dep_hash: impl Into<i32>,
primary_key: impl Into<Il2CppString>,
type: impl Into<SystemType>,
)
fn ctor( self, locator: impl Into<ResourceLocationMap>, internal_id: impl Into<Il2CppString>, provider_id: impl Into<Il2CppString>, dependency_key: impl Into<Object>, data: impl Into<Object>, dep_hash: impl Into<i32>, primary_key: impl Into<Il2CppString>, type: impl Into<SystemType>, )
.ctor(crate::unity_engine::addressable_assets::resource_locators::resourcelocationmap::ResourceLocationMap, ::unity::Il2CppString, ::unity::Il2CppString, crate::system::object::Object, crate::system::object::Object, i32, ::unity::Il2CppString, ::unity::SystemType) 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: IContentCatalogData_CompactLocation> IContentCatalogData_CompactLocationMethods for __T
Available on crate feature
unity_engine-addressable_assets-resource_locators-contentcatalogdata only.