Skip to main content

IStick

Trait IStick 

Source
pub trait IStick: IObject {
Show 22 methods // Provided methods fn m_stick_x(self) -> f32 { ... } fn set_m_stick_x(self, value: f32) { ... } fn m_stick_y(self) -> f32 { ... } fn set_m_stick_y(self, value: f32) { ... } fn m_power(self) -> f32 { ... } fn set_m_power(self, value: f32) { ... } fn m_dir_now(self) -> f32 { ... } fn set_m_dir_now(self, value: f32) { ... } fn m_dir_past(self) -> f32 { ... } fn set_m_dir_past(self, value: f32) { ... } fn m_total_rotate_dir(self) -> f32 { ... } fn set_m_total_rotate_dir(self, value: f32) { ... } fn m_rot_count(self) -> i32 { ... } fn set_m_rot_count(self, value: i32) { ... } fn m_keep_rot_count(self) -> i32 { ... } fn set_m_keep_rot_count(self, value: i32) { ... } fn m_rot(self) -> Stick_RotateDir { ... } fn set_m_rot(self, value: Stick_RotateDir) { ... } fn m_dir_logger(self) -> List_1<i32> { ... } fn set_m_dir_logger(self, value: List_1<i32>) { ... } fn m_logger_timer(self) -> f32 { ... } fn set_m_logger_timer(self, value: f32) { ... }
}

Provided Methods§

Source

fn m_stick_x(self) -> f32

Source

fn set_m_stick_x(self, value: f32)

Source

fn m_stick_y(self) -> f32

Source

fn set_m_stick_y(self, value: f32)

Source

fn m_power(self) -> f32

Source

fn set_m_power(self, value: f32)

Source

fn m_dir_now(self) -> f32

Source

fn set_m_dir_now(self, value: f32)

Source

fn m_dir_past(self) -> f32

Source

fn set_m_dir_past(self, value: f32)

Source

fn m_total_rotate_dir(self) -> f32

Source

fn set_m_total_rotate_dir(self, value: f32)

Source

fn m_rot_count(self) -> i32

Source

fn set_m_rot_count(self, value: i32)

Source

fn m_keep_rot_count(self) -> i32

Source

fn set_m_keep_rot_count(self, value: i32)

Source

fn m_rot(self) -> Stick_RotateDir

Source

fn set_m_rot(self, value: Stick_RotateDir)

Source

fn m_dir_logger(self) -> List_1<i32>

Source

fn set_m_dir_logger(self, value: List_1<i32>)

Source

fn m_logger_timer(self) -> f32

Source

fn set_m_logger_timer(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.

Implementors§