Skip to main content

IHubFastTravelMethods

Trait IHubFastTravelMethods 

Source
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§

Source

fn get_length(self) -> i32

get_Length() overload

Source

fn get_item(self, index: impl Into<i32>) -> HubFastTravel_Location

get_Item(i32) overload

Source

fn initialize(self, access_manager: impl Into<HubAccessManager>)

Initialize(crate::app::hubaccessmanager::HubAccessManager) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IHubFastTravel> IHubFastTravelMethods for __T

Available on crate feature app-hubfasttravel only.