pub trait IRingCleaningSequence_RButtonHoldSequence: IProcInst {
// Provided methods
fn m_cloth(self) -> RingCleaningCloth { ... }
fn set_m_cloth(self, value: RingCleaningCloth) { ... }
fn m_callback(self) -> Action { ... }
fn set_m_callback(self, value: Action) { ... }
fn m_hold_counter(self) -> i32 { ... }
fn set_m_hold_counter(self, value: i32) { ... }
fn hold_counter_threshold(self) -> i32 { ... }
fn set_hold_counter_threshold(self, value: i32) { ... }
fn m_is_trigger(self) -> bool { ... }
fn set_m_is_trigger(self, value: bool) { ... }
fn gap_size(self) -> f32 { ... }
fn set_gap_size(self, value: f32) { ... }
}Provided Methods§
fn m_cloth(self) -> RingCleaningCloth
fn set_m_cloth(self, value: RingCleaningCloth)
fn m_callback(self) -> Action
fn set_m_callback(self, value: Action)
fn m_hold_counter(self) -> i32
fn set_m_hold_counter(self, value: i32)
fn hold_counter_threshold(self) -> i32
fn set_hold_counter_threshold(self, value: i32)
fn m_is_trigger(self) -> bool
fn set_m_is_trigger(self, value: bool)
fn gap_size(self) -> f32
fn set_gap_size(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.