pub trait IRingCleaningGaugeControllerMethods: IRingCleaningGaugeController {
Show 14 methods
// Provided methods
fn get_dirty_rate(self) -> f32 { ... }
fn get_is_finish_cleaning(self) -> bool { ... }
fn set_is_finish_cleaning(self, value: impl Into<bool>) { ... }
fn awake(self) { ... }
fn initialize(self, dirty: impl Into<i32>) { ... }
fn change_dirty(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>) { ... }
fn tick(self) { ... }
fn set_dirty(self, dirty: impl Into<i32>) { ... }
fn get_dirty_texture_value(self, value: impl Into<f32>) -> f32 { ... }
fn get_guage_width(self, dirty: impl Into<i32>) -> f32 { ... }
fn init_gauge_width(self, dirty: impl Into<i32>) { ... }
fn set_condition_icon(self, rect: impl Into<RectTransform>) { ... }
fn update_gauge_width(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_dirty_rate(self) -> f32
fn get_dirty_rate(self) -> f32
get_DirtyRate() overload
Sourcefn get_is_finish_cleaning(self) -> bool
fn get_is_finish_cleaning(self) -> bool
get_IsFinishCleaning() overload
Sourcefn set_is_finish_cleaning(self, value: impl Into<bool>)
fn set_is_finish_cleaning(self, value: impl Into<bool>)
set_IsFinishCleaning(bool) overload
Sourcefn initialize(self, dirty: impl Into<i32>)
fn initialize(self, dirty: impl Into<i32>)
Initialize(i32) overload
Sourcefn change_dirty(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>)
fn change_dirty(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>)
ChangeDirty(i32, i32) overload
Sourcefn get_dirty_texture_value(self, value: impl Into<f32>) -> f32
fn get_dirty_texture_value(self, value: impl Into<f32>) -> f32
GetDirtyTextureValue(f32) overload
Sourcefn get_guage_width(self, dirty: impl Into<i32>) -> f32
fn get_guage_width(self, dirty: impl Into<i32>) -> f32
GetGuageWidth(i32) overload
Sourcefn init_gauge_width(self, dirty: impl Into<i32>)
fn init_gauge_width(self, dirty: impl Into<i32>)
InitGaugeWidth(i32) overload
Sourcefn set_condition_icon(self, rect: impl Into<RectTransform>)
fn set_condition_icon(self, rect: impl Into<RectTransform>)
SetConditionIcon(crate::unity_engine::recttransform::RectTransform) overload
Sourcefn update_gauge_width(self)
fn update_gauge_width(self)
UpdateGaugeWidth() 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: IRingCleaningGaugeController> IRingCleaningGaugeControllerMethods for __T
Available on crate feature
app-ringcleaninggaugecontroller only.