pub trait IProfileCardFavoriteMapDataMethods: IProfileCardFavoriteMapData {
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_cid(self) -> Il2CppString { ... }
fn set_cid(self, value: impl Into<Il2CppString>) { ... }
fn get_condition(self) -> ProfileCardCondition { ... }
fn set_condition(self, value: impl Into<ProfileCardCondition>) { ... }
fn get_arg(self) -> Il2CppString { ... }
fn set_arg(self, value: impl Into<Il2CppString>) { ... }
fn get_debug_name(self) -> Il2CppString { ... }
fn get_name(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_id(self) -> Il2CppString
fn get_id(self) -> Il2CppString
get_Id() overload
Sourcefn set_id(self, value: impl Into<Il2CppString>)
fn set_id(self, value: impl Into<Il2CppString>)
set_Id(::unity::Il2CppString) overload
Sourcefn get_cid(self) -> Il2CppString
fn get_cid(self) -> Il2CppString
get_Cid() overload
Sourcefn set_cid(self, value: impl Into<Il2CppString>)
fn set_cid(self, value: impl Into<Il2CppString>)
set_Cid(::unity::Il2CppString) overload
Sourcefn get_condition(self) -> ProfileCardCondition
fn get_condition(self) -> ProfileCardCondition
get_Condition() overload
Sourcefn set_condition(self, value: impl Into<ProfileCardCondition>)
fn set_condition(self, value: impl Into<ProfileCardCondition>)
set_Condition(crate::app::profilecardcondition::ProfileCardCondition) overload
Sourcefn get_arg(self) -> Il2CppString
fn get_arg(self) -> Il2CppString
get_Arg() overload
Sourcefn set_arg(self, value: impl Into<Il2CppString>)
fn set_arg(self, value: impl Into<Il2CppString>)
set_Arg(::unity::Il2CppString) overload
Sourcefn get_debug_name(self) -> Il2CppString
fn get_debug_name(self) -> Il2CppString
GetDebugName() overload
Sourcefn get_name(self) -> Il2CppString
fn get_name(self) -> Il2CppString
GetName() 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: IProfileCardFavoriteMapData> IProfileCardFavoriteMapDataMethods for __T
Available on crate feature
app-profilecardfavoritemapdata only.