Skip to main content

ITutorialDataMethods

Trait ITutorialDataMethods 

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

Source

fn get_mid(self) -> Il2CppString

get_MID() overload

Source

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

set_MID(::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_sprite_atlas(self) -> Il2CppString

get_SpriteAtlas() overload

Source

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

set_SpriteAtlas(::unity::Il2CppString) overload

Source

fn get_type(self) -> TutorialData_Types

get_Type() overload

Source

fn set_type(self, value: impl Into<TutorialData_Types>)

set_Type(crate::app::tutorialdata::TutorialData_Types) overload

Source

fn get_notice(self) -> TutorialData_Notices

get_Notice() overload

Source

fn set_notice(self, value: impl Into<TutorialData_Notices>)

set_Notice(crate::app::tutorialdata::TutorialData_Notices) overload

Source

fn get_cid(self) -> Il2CppString

get_Cid() overload

Source

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

set_Cid(::unity::Il2CppString) overload

Source

fn get_no(self) -> i32

get_No() overload

Source

fn set_no(self, value: impl Into<i32>)

set_No(i32) overload

Source

fn get_ss_type(self) -> TutorialData_SSTypes

get_SSType() overload

Source

fn set_ss_type(self, value: impl Into<TutorialData_SSTypes>)

set_SSType(crate::app::tutorialdata::TutorialData_SSTypes) 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: ITutorialData> ITutorialDataMethods for __T

Available on crate feature app-tutorialdata only.