Skip to main content

IRingCleaningGaugeControllerMethods

Trait IRingCleaningGaugeControllerMethods 

Source
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§

Source

fn get_dirty_rate(self) -> f32

get_DirtyRate() overload

Source

fn get_is_finish_cleaning(self) -> bool

get_IsFinishCleaning() overload

Source

fn set_is_finish_cleaning(self, value: impl Into<bool>)

set_IsFinishCleaning(bool) overload

Source

fn awake(self)

Awake() overload

Source

fn initialize(self, dirty: impl Into<i32>)

Initialize(i32) overload

Source

fn change_dirty(self, old_dirty: impl Into<i32>, new_dirty: impl Into<i32>)

ChangeDirty(i32, i32) overload

Source

fn tick(self)

Tick() overload

Source

fn set_dirty(self, dirty: impl Into<i32>)

SetDirty(i32) overload

Source

fn get_dirty_texture_value(self, value: impl Into<f32>) -> f32

GetDirtyTextureValue(f32) overload

Source

fn get_guage_width(self, dirty: impl Into<i32>) -> f32

GetGuageWidth(i32) overload

Source

fn init_gauge_width(self, dirty: impl Into<i32>)

InitGaugeWidth(i32) overload

Source

fn set_condition_icon(self, rect: impl Into<RectTransform>)

SetConditionIcon(crate::unity_engine::recttransform::RectTransform) overload

Source

fn update_gauge_width(self)

UpdateGaugeWidth() 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: IRingCleaningGaugeController> IRingCleaningGaugeControllerMethods for __T

Available on crate feature app-ringcleaninggaugecontroller only.