pub trait ITipsDataMethods: ITipsData {
Show 22 methods
// Provided methods
fn get_id(self) -> Il2CppString { ... }
fn set_id(self, value: impl Into<Il2CppString>) { ... }
fn get_title(self) -> Il2CppString { ... }
fn set_title(self, value: impl Into<Il2CppString>) { ... }
fn get_tips(self) -> Il2CppString { ... }
fn set_tips(self, value: impl Into<Il2CppString>) { ... }
fn get_own_id(self) -> Il2CppString { ... }
fn set_own_id(self, value: impl Into<Il2CppString>) { ... }
fn get_icon_info_id(self) -> Il2CppString { ... }
fn set_icon_info_id(self, value: impl Into<Il2CppString>) { ... }
fn get_chapter(self) -> Il2CppString { ... }
fn set_chapter(self, value: impl Into<Il2CppString>) { ... }
fn get_variable(self) -> Il2CppString { ... }
fn set_variable(self, value: impl Into<Il2CppString>) { ... }
fn get_allow(self) -> TipsData_Allows { ... }
fn set_allow(self, value: impl Into<TipsData_Allows>) { ... }
fn get_kind(self) -> TipsData_Kinds { ... }
fn get_tips_id(self) -> Il2CppString { ... }
fn on_build(self) { ... }
fn on_release(self) { ... }
fn is_condition(self) -> bool { ... }
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_title(self) -> Il2CppString
fn get_title(self) -> Il2CppString
get_Title() overload
Sourcefn set_title(self, value: impl Into<Il2CppString>)
fn set_title(self, value: impl Into<Il2CppString>)
set_Title(::unity::Il2CppString) overload
Sourcefn get_tips(self) -> Il2CppString
fn get_tips(self) -> Il2CppString
get_Tips() overload
Sourcefn set_tips(self, value: impl Into<Il2CppString>)
fn set_tips(self, value: impl Into<Il2CppString>)
set_Tips(::unity::Il2CppString) overload
Sourcefn get_own_id(self) -> Il2CppString
fn get_own_id(self) -> Il2CppString
get_OwnID() overload
Sourcefn set_own_id(self, value: impl Into<Il2CppString>)
fn set_own_id(self, value: impl Into<Il2CppString>)
set_OwnID(::unity::Il2CppString) overload
Sourcefn get_icon_info_id(self) -> Il2CppString
fn get_icon_info_id(self) -> Il2CppString
get_IconInfoID() overload
Sourcefn set_icon_info_id(self, value: impl Into<Il2CppString>)
fn set_icon_info_id(self, value: impl Into<Il2CppString>)
set_IconInfoID(::unity::Il2CppString) overload
Sourcefn get_chapter(self) -> Il2CppString
fn get_chapter(self) -> Il2CppString
get_Chapter() overload
Sourcefn set_chapter(self, value: impl Into<Il2CppString>)
fn set_chapter(self, value: impl Into<Il2CppString>)
set_Chapter(::unity::Il2CppString) overload
Sourcefn get_variable(self) -> Il2CppString
fn get_variable(self) -> Il2CppString
get_Variable() overload
Sourcefn set_variable(self, value: impl Into<Il2CppString>)
fn set_variable(self, value: impl Into<Il2CppString>)
set_Variable(::unity::Il2CppString) overload
Sourcefn get_allow(self) -> TipsData_Allows
fn get_allow(self) -> TipsData_Allows
get_Allow() overload
Sourcefn set_allow(self, value: impl Into<TipsData_Allows>)
fn set_allow(self, value: impl Into<TipsData_Allows>)
set_Allow(crate::app::tipsdata::TipsData_Allows) overload
Sourcefn get_kind(self) -> TipsData_Kinds
fn get_kind(self) -> TipsData_Kinds
GetKind() overload
Sourcefn get_tips_id(self) -> Il2CppString
fn get_tips_id(self) -> Il2CppString
GetTipsID() overload
Sourcefn on_release(self)
fn on_release(self)
OnRelease() overload
Sourcefn is_condition(self) -> bool
fn is_condition(self) -> bool
IsCondition() 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: ITipsData> ITipsDataMethods for __T
Available on crate feature
app-tipsdata only.