Skip to main content

IMapUIMethods

Trait IMapUIMethods 

Source
pub trait IMapUIMethods: IMapUI {
    // Provided methods
    fn start(self) { ... }
    fn update(self) { ... }
    fn get_time(self) -> f32 { ... }
    fn get_cannon_icon_offset(self) -> f32 { ... }
    fn get_up_down_curve(self) -> AnimationCurve { ... }
    fn get_scale_curve(self) -> AnimationCurve { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn get_time(self) -> f32

get_Time() overload

Source

fn get_cannon_icon_offset(self) -> f32

get_CannonIconOffset() overload

Source

fn get_up_down_curve(self) -> AnimationCurve

get_UpDownCurve() overload

Source

fn get_scale_curve(self) -> AnimationCurve

get_ScaleCurve() 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: IMapUI> IMapUIMethods for __T

Available on crate feature root-mapui only.