pub trait IHubAccessData: IObject {
// Provided methods
fn aid(self) -> Il2CppString { ... }
fn set_aid(self, value: Il2CppString) { ... }
fn m_flag_name(self) -> Il2CppString { ... }
fn set_m_flag_name(self, value: Il2CppString) { ... }
fn m_messages(self) -> List_1<Il2CppString> { ... }
fn set_m_messages(self, value: List_1<Il2CppString>) { ... }
}Provided Methods§
fn aid(self) -> Il2CppString
fn set_aid(self, value: Il2CppString)
fn m_flag_name(self) -> Il2CppString
fn set_m_flag_name(self, value: Il2CppString)
fn m_messages(self) -> List_1<Il2CppString>
fn set_m_messages(self, value: List_1<Il2CppString>)
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.