pub trait IGodRelianceTalkSequence: ICommonRelianceTalkSequence {
// Provided methods
fn m_unit(self) -> Unit { ... }
fn set_m_unit(self, value: Unit) { ... }
fn m_unit_ascii_name(self) -> Il2CppString { ... }
fn set_m_unit_ascii_name(self, value: Il2CppString) { ... }
fn m_god(self) -> GodUnit { ... }
fn set_m_god(self, value: GodUnit) { ... }
fn m_god_ascii_name(self) -> Il2CppString { ... }
fn set_m_god_ascii_name(self, value: Il2CppString) { ... }
fn m_reliance_level(self) -> GodData_RelianceLevel { ... }
fn set_m_reliance_level(self, value: GodData_RelianceLevel) { ... }
}Provided Methods§
fn m_unit(self) -> Unit
fn set_m_unit(self, value: Unit)
fn m_unit_ascii_name(self) -> Il2CppString
fn set_m_unit_ascii_name(self, value: Il2CppString)
fn m_god(self) -> GodUnit
fn set_m_god(self, value: GodUnit)
fn m_god_ascii_name(self) -> Il2CppString
fn set_m_god_ascii_name(self, value: Il2CppString)
fn m_reliance_level(self) -> GodData_RelianceLevel
fn set_m_reliance_level(self, value: GodData_RelianceLevel)
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.