Skip to main content

IContentCatalogData_CompactLocationMethods

Trait IContentCatalogData_CompactLocationMethods 

Source
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§

Source

fn get_internal_id(self) -> Il2CppString

get_InternalId() overload

Source

fn get_provider_id(self) -> Il2CppString

get_ProviderId() overload

Source

fn get_dependencies(self) -> IList_1_Interface<IResourceLocation>

get_Dependencies() overload

Source

fn get_has_dependencies(self) -> bool

get_HasDependencies() overload

Source

fn get_dependency_hash_code(self) -> i32

get_DependencyHashCode() overload

Source

fn get_data(self) -> Object

get_Data() overload

Source

fn get_primary_key(self) -> Il2CppString

get_PrimaryKey() overload

Source

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

set_PrimaryKey(::unity::Il2CppString) overload

Source

fn get_resource_type(self) -> SystemType

get_ResourceType() overload

Source

fn to_string(self) -> Il2CppString

ToString() overload

Source

fn hash(self, t: impl Into<SystemType>) -> i32

Hash(::unity::SystemType) overload

Source

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§

Source§

impl<__T: IContentCatalogData_CompactLocation> IContentCatalogData_CompactLocationMethods for __T

Available on crate feature unity_engine-addressable_assets-resource_locators-contentcatalogdata only.