pub trait IHubFastTravelMethods: IHubFastTravel {
// Provided methods
fn get_length(self) -> i32 { ... }
fn get_item(self, index: impl Into<i32>) -> HubFastTravel_Location { ... }
fn initialize(self, access_manager: impl Into<HubAccessManager>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_length(self) -> i32
fn get_length(self) -> i32
get_Length() overload
Sourcefn get_item(self, index: impl Into<i32>) -> HubFastTravel_Location
fn get_item(self, index: impl Into<i32>) -> HubFastTravel_Location
get_Item(i32) overload
Sourcefn initialize(self, access_manager: impl Into<HubAccessManager>)
fn initialize(self, access_manager: impl Into<HubAccessManager>)
Initialize(crate::app::hubaccessmanager::HubAccessManager) 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: IHubFastTravel> IHubFastTravelMethods for __T
Available on crate feature
app-hubfasttravel only.