pub trait IHubAccess: IMonoBehaviour {
// Provided methods
fn aid(self) -> Il2CppString { ... }
fn set_aid(self, value: Il2CppString) { ... }
fn m_access_data(self) -> HubAccessData { ... }
fn set_m_access_data(self, value: HubAccessData) { ... }
}Provided Methods§
fn aid(self) -> Il2CppString
fn set_aid(self, value: Il2CppString)
fn m_access_data(self) -> HubAccessData
fn set_m_access_data(self, value: HubAccessData)
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.