pub trait IEndRollDataMethods: IEndRollData {
// Provided methods
fn get_type(self) -> EndRollData_Kind { ... }
fn set_type(self, value: impl Into<EndRollData_Kind>) { ... }
fn get_text1(self) -> Il2CppString { ... }
fn set_text1(self, value: impl Into<Il2CppString>) { ... }
fn get_text2(self) -> Il2CppString { ... }
fn set_text2(self, value: impl Into<Il2CppString>) { ... }
fn get_text3(self) -> Il2CppString { ... }
fn set_text3(self, value: impl Into<Il2CppString>) { ... }
fn get_text(self) -> Il2CppString { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_type(self) -> EndRollData_Kind
fn get_type(self) -> EndRollData_Kind
get_Type() overload
Sourcefn set_type(self, value: impl Into<EndRollData_Kind>)
fn set_type(self, value: impl Into<EndRollData_Kind>)
set_Type(crate::app::endrolldata::EndRollData_Kind) overload
Sourcefn get_text1(self) -> Il2CppString
fn get_text1(self) -> Il2CppString
get_Text1() overload
Sourcefn set_text1(self, value: impl Into<Il2CppString>)
fn set_text1(self, value: impl Into<Il2CppString>)
set_Text1(::unity::Il2CppString) overload
Sourcefn get_text2(self) -> Il2CppString
fn get_text2(self) -> Il2CppString
get_Text2() overload
Sourcefn set_text2(self, value: impl Into<Il2CppString>)
fn set_text2(self, value: impl Into<Il2CppString>)
set_Text2(::unity::Il2CppString) overload
Sourcefn get_text3(self) -> Il2CppString
fn get_text3(self) -> Il2CppString
get_Text3() overload
Sourcefn set_text3(self, value: impl Into<Il2CppString>)
fn set_text3(self, value: impl Into<Il2CppString>)
set_Text3(::unity::Il2CppString) overload
Sourcefn get_text(self) -> Il2CppString
fn get_text(self) -> Il2CppString
get_Text() 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: IEndRollData> IEndRollDataMethods for __T
Available on crate feature
app-endrolldata only.