pub trait IMapUI: ISingletonMonoBehaviour_1<MapUI> {
// Provided methods
fn m_up_down_curve(self) -> AnimationCurve { ... }
fn set_m_up_down_curve(self, value: AnimationCurve) { ... }
fn m_scale_curve(self) -> AnimationCurve { ... }
fn set_m_scale_curve(self, value: AnimationCurve) { ... }
fn m_cannon_icon_offset(self) -> f32 { ... }
fn set_m_cannon_icon_offset(self, value: f32) { ... }
fn m_time(self) -> f32 { ... }
fn set_m_time(self, value: f32) { ... }
}Provided Methods§
fn m_up_down_curve(self) -> AnimationCurve
fn set_m_up_down_curve(self, value: AnimationCurve)
fn m_scale_curve(self) -> AnimationCurve
fn set_m_scale_curve(self, value: AnimationCurve)
fn m_cannon_icon_offset(self) -> f32
fn set_m_cannon_icon_offset(self, value: f32)
fn m_time(self) -> f32
fn set_m_time(self, value: f32)
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.