pub trait ITutorialDataMethods: ITutorialData {
Show 17 methods
// Provided methods
fn get_mid(self) -> Il2CppString { ... }
fn set_mid(self, value: impl Into<Il2CppString>) { ... }
fn get_title(self) -> Il2CppString { ... }
fn set_title(self, value: impl Into<Il2CppString>) { ... }
fn get_sprite_atlas(self) -> Il2CppString { ... }
fn set_sprite_atlas(self, value: impl Into<Il2CppString>) { ... }
fn get_type(self) -> TutorialData_Types { ... }
fn set_type(self, value: impl Into<TutorialData_Types>) { ... }
fn get_notice(self) -> TutorialData_Notices { ... }
fn set_notice(self, value: impl Into<TutorialData_Notices>) { ... }
fn get_cid(self) -> Il2CppString { ... }
fn set_cid(self, value: impl Into<Il2CppString>) { ... }
fn get_no(self) -> i32 { ... }
fn set_no(self, value: impl Into<i32>) { ... }
fn get_ss_type(self) -> TutorialData_SSTypes { ... }
fn set_ss_type(self, value: impl Into<TutorialData_SSTypes>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_mid(self) -> Il2CppString
fn get_mid(self) -> Il2CppString
get_MID() overload
Sourcefn set_mid(self, value: impl Into<Il2CppString>)
fn set_mid(self, value: impl Into<Il2CppString>)
set_MID(::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_sprite_atlas(self) -> Il2CppString
fn get_sprite_atlas(self) -> Il2CppString
get_SpriteAtlas() overload
Sourcefn set_sprite_atlas(self, value: impl Into<Il2CppString>)
fn set_sprite_atlas(self, value: impl Into<Il2CppString>)
set_SpriteAtlas(::unity::Il2CppString) overload
Sourcefn get_type(self) -> TutorialData_Types
fn get_type(self) -> TutorialData_Types
get_Type() overload
Sourcefn set_type(self, value: impl Into<TutorialData_Types>)
fn set_type(self, value: impl Into<TutorialData_Types>)
set_Type(crate::app::tutorialdata::TutorialData_Types) overload
Sourcefn get_notice(self) -> TutorialData_Notices
fn get_notice(self) -> TutorialData_Notices
get_Notice() overload
Sourcefn set_notice(self, value: impl Into<TutorialData_Notices>)
fn set_notice(self, value: impl Into<TutorialData_Notices>)
set_Notice(crate::app::tutorialdata::TutorialData_Notices) 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_ss_type(self) -> TutorialData_SSTypes
fn get_ss_type(self) -> TutorialData_SSTypes
get_SSType() overload
Sourcefn set_ss_type(self, value: impl Into<TutorialData_SSTypes>)
fn set_ss_type(self, value: impl Into<TutorialData_SSTypes>)
set_SSType(crate::app::tutorialdata::TutorialData_SSTypes) 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: ITutorialData> ITutorialDataMethods for __T
Available on crate feature
app-tutorialdata only.