pub trait IHubFastTravel: IObject {
// Provided methods
fn m_location(self) -> List_1<HubFastTravel_Location> { ... }
fn set_m_location(self, value: List_1<HubFastTravel_Location>) { ... }
fn m_current_access_manager(self) -> HubAccessManager { ... }
fn set_m_current_access_manager(self, value: HubAccessManager) { ... }
}Provided Methods§
fn m_location(self) -> List_1<HubFastTravel_Location>
fn set_m_location(self, value: List_1<HubFastTravel_Location>)
fn m_current_access_manager(self) -> HubAccessManager
fn set_m_current_access_manager(self, value: HubAccessManager)
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.