pub trait ISolanelInfoMenuContent_HelpFastTravelMethods: ISolanelInfoMenuContent_HelpFastTravel {
// Provided methods
fn ctor(self, root: impl Into<GameObject>) { ... }
fn try_set_fast_travel(
self,
data: impl Into<HubFacilityData>,
sprite: impl Into<Sprite>,
) -> bool { ... }
fn hide(self) { ... }
fn set_one_only(self, is_done: impl Into<bool>) { ... }
fn set_one_done(self, is_done: impl Into<bool>) { ... }
fn set_count(self, num: impl Into<i32>) { ... }
}Provided Methods§
Sourcefn ctor(self, root: impl Into<GameObject>)
fn ctor(self, root: impl Into<GameObject>)
.ctor(crate::unity_engine::gameobject::GameObject) overload
Sourcefn try_set_fast_travel(
self,
data: impl Into<HubFacilityData>,
sprite: impl Into<Sprite>,
) -> bool
fn try_set_fast_travel( self, data: impl Into<HubFacilityData>, sprite: impl Into<Sprite>, ) -> bool
TrySetFastTravel(crate::app::hubfacilitydata::HubFacilityData, crate::unity_engine::sprite::Sprite) overload
Sourcefn set_one_only(self, is_done: impl Into<bool>)
fn set_one_only(self, is_done: impl Into<bool>)
SetOneOnly(bool) overload
Sourcefn set_one_done(self, is_done: impl Into<bool>)
fn set_one_done(self, is_done: impl Into<bool>)
SetOneDone(bool) 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: ISolanelInfoMenuContent_HelpFastTravel> ISolanelInfoMenuContent_HelpFastTravelMethods for __T
Available on crate feature
app-solanelinfomenucontent only.