pub trait IGodRelianceTalkSequenceMethods: IGodRelianceTalkSequence {
// Provided methods
fn ctor(self, unit: impl Into<Unit>, god: impl Into<GodUnit>) { ... }
fn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString { ... }
fn create_mess_file_name_2(
self,
ascii_name_a: impl Into<Il2CppString>,
ascii_name_b: impl Into<Il2CppString>,
) -> Il2CppString { ... }
fn create_mid(self) -> Il2CppString { ... }
fn get_reliance_level_text(
self,
reliance_level: impl Into<GodData_RelianceLevel>,
) -> Il2CppString { ... }
fn level_up(self) { ... }
}Provided Methods§
Sourcefn ctor(self, unit: impl Into<Unit>, god: impl Into<GodUnit>)
fn ctor(self, unit: impl Into<Unit>, god: impl Into<GodUnit>)
.ctor(crate::app::unit::Unit, crate::app::godunit::GodUnit) overload
Sourcefn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString
fn create_mess_file_name(self, is_reverse: impl Into<bool>) -> Il2CppString
CreateMessFileName(bool) overload
Sourcefn create_mess_file_name_2(
self,
ascii_name_a: impl Into<Il2CppString>,
ascii_name_b: impl Into<Il2CppString>,
) -> Il2CppString
fn create_mess_file_name_2( self, ascii_name_a: impl Into<Il2CppString>, ascii_name_b: impl Into<Il2CppString>, ) -> Il2CppString
CreateMessFileName(::unity::Il2CppString, ::unity::Il2CppString) overload
Sourcefn create_mid(self) -> Il2CppString
fn create_mid(self) -> Il2CppString
CreateMid() overload
Sourcefn get_reliance_level_text(
self,
reliance_level: impl Into<GodData_RelianceLevel>,
) -> Il2CppString
fn get_reliance_level_text( self, reliance_level: impl Into<GodData_RelianceLevel>, ) -> Il2CppString
GetRelianceLevelText(crate::app::goddata::GodData_RelianceLevel) 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: IGodRelianceTalkSequence> IGodRelianceTalkSequenceMethods for __T
Available on crate feature
app-godreliancetalksequence only.