pub trait IGmapSpotControllerMethods: IGmapSpotController {
// Provided methods
fn start(self) { ... }
fn initialize(self) { ... }
fn start_appear(self) -> bool { ... }
fn appear_tick(self) -> bool { ... }
fn update_spot_color(self) { ... }
fn set_material(self, type: impl Into<GmapSpotController_Type>) { ... }
fn adjust_pos(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn initialize(self)
fn initialize(self)
Initialize() overload
Sourcefn start_appear(self) -> bool
fn start_appear(self) -> bool
StartAppear() overload
Sourcefn appear_tick(self) -> bool
fn appear_tick(self) -> bool
AppearTick() overload
Sourcefn update_spot_color(self)
fn update_spot_color(self)
UpdateSpotColor() overload
Sourcefn set_material(self, type: impl Into<GmapSpotController_Type>)
fn set_material(self, type: impl Into<GmapSpotController_Type>)
SetMaterial(crate::app::gmapspotcontroller::GmapSpotController_Type) overload
Sourcefn adjust_pos(self)
fn adjust_pos(self)
AdjustPos() 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: IGmapSpotController> IGmapSpotControllerMethods for __T
Available on crate feature
app-gmapspotcontroller only.