Skip to main content

ITipsDataMethods

Trait ITipsDataMethods 

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

Source

fn get_id(self) -> Il2CppString

get_ID() overload

Source

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

set_ID(::unity::Il2CppString) overload

Source

fn get_title(self) -> Il2CppString

get_Title() overload

Source

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

set_Title(::unity::Il2CppString) overload

Source

fn get_tips(self) -> Il2CppString

get_Tips() overload

Source

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

set_Tips(::unity::Il2CppString) overload

Source

fn get_own_id(self) -> Il2CppString

get_OwnID() overload

Source

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

set_OwnID(::unity::Il2CppString) overload

Source

fn get_icon_info_id(self) -> Il2CppString

get_IconInfoID() overload

Source

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

set_IconInfoID(::unity::Il2CppString) overload

Source

fn get_chapter(self) -> Il2CppString

get_Chapter() overload

Source

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

set_Chapter(::unity::Il2CppString) overload

Source

fn get_variable(self) -> Il2CppString

get_Variable() overload

Source

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

set_Variable(::unity::Il2CppString) overload

Source

fn get_allow(self) -> TipsData_Allows

get_Allow() overload

Source

fn set_allow(self, value: impl Into<TipsData_Allows>)

set_Allow(crate::app::tipsdata::TipsData_Allows) overload

Source

fn get_kind(self) -> TipsData_Kinds

GetKind() overload

Source

fn get_tips_id(self) -> Il2CppString

GetTipsID() overload

Source

fn on_build(self)

OnBuild() overload

Source

fn on_release(self)

OnRelease() overload

Source

fn is_condition(self) -> bool

IsCondition() overload

Source

fn ctor(self)

.ctor() 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: ITipsData> ITipsDataMethods for __T

Available on crate feature app-tipsdata only.