pub trait IRingCleaningGaugeController: IMonoBehaviour {
// Provided methods
fn gauge_object(self) -> GameObject { ... }
fn set_gauge_object(self, value: GameObject) { ... }
fn condition_icon_field(self) -> GameObject { ... }
fn set_condition_icon_field(self, value: GameObject) { ... }
fn dirty_texture_curve(self) -> AnimationCurve { ... }
fn set_dirty_texture_curve(self, value: AnimationCurve) { ... }
fn max_gauge_width(self) -> f32 { ... }
fn set_max_gauge_width(self, value: f32) { ... }
fn m_interpolator_width(self) -> InterpolatorFloat { ... }
fn set_m_interpolator_width(self, value: InterpolatorFloat) { ... }
fn m_condition_icon(self) -> RingCleaningConditionIcon { ... }
fn set_m_condition_icon(self, value: RingCleaningConditionIcon) { ... }
}Provided Methods§
fn gauge_object(self) -> GameObject
fn set_gauge_object(self, value: GameObject)
fn condition_icon_field(self) -> GameObject
fn set_condition_icon_field(self, value: GameObject)
fn dirty_texture_curve(self) -> AnimationCurve
fn set_dirty_texture_curve(self, value: AnimationCurve)
fn max_gauge_width(self) -> f32
fn set_max_gauge_width(self, value: f32)
fn m_interpolator_width(self) -> InterpolatorFloat
fn set_m_interpolator_width(self, value: InterpolatorFloat)
fn m_condition_icon(self) -> RingCleaningConditionIcon
fn set_m_condition_icon(self, value: RingCleaningConditionIcon)
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.