pub trait IMapPanelGimmick: IMapPanelBase_1<MapPanelGimmick> {
// Provided methods
fn m_alpha(self) -> InterpolatorFloat { ... }
fn set_m_alpha(self, value: InterpolatorFloat) { ... }
fn m_gimmick_image(self) -> Material { ... }
fn set_m_gimmick_image(self, value: Material) { ... }
fn m_gimmick_color(self) -> Color { ... }
fn set_m_gimmick_color(self, value: Color) { ... }
fn m_is_update(self) -> bool { ... }
fn set_m_is_update(self, value: bool) { ... }
fn previous_count(self) -> i32 { ... }
fn set_previous_count(self, value: i32) { ... }
}Provided Methods§
fn m_alpha(self) -> InterpolatorFloat
fn set_m_alpha(self, value: InterpolatorFloat)
fn m_gimmick_image(self) -> Material
fn set_m_gimmick_image(self, value: Material)
fn m_gimmick_color(self) -> Color
fn set_m_gimmick_color(self, value: Color)
fn m_is_update(self) -> bool
fn set_m_is_update(self, value: bool)
fn previous_count(self) -> i32
fn set_previous_count(self, value: i32)
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.