Trait BehaviourRotateExt

Source
pub trait BehaviourRotateExt: 'static {
Show 25 methods // Required methods fn get_axis(&self) -> RotateAxis; fn get_bounds(&self) -> (f64, f64); fn get_center(&self) -> (i32, i32, i32); fn get_direction(&self) -> RotateDirection; fn set_axis(&self, axis: RotateAxis); fn set_bounds(&self, angle_start: f64, angle_end: f64); fn set_center(&self, x: i32, y: i32, z: i32); fn set_direction(&self, direction: RotateDirection); fn get_property_angle_end(&self) -> f64; fn set_property_angle_end(&self, angle_end: f64); fn get_property_angle_start(&self) -> f64; fn set_property_angle_start(&self, angle_start: f64); fn get_property_center_x(&self) -> i32; fn set_property_center_x(&self, center_x: i32); fn get_property_center_y(&self) -> i32; fn set_property_center_y(&self, center_y: i32); fn get_property_center_z(&self) -> i32; fn set_property_center_z(&self, center_z: i32); fn connect_property_angle_end_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_angle_start_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_axis_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_center_x_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_center_y_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_center_z_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId; fn connect_property_direction_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_axis(&self) -> RotateAxis

Source

fn get_bounds(&self) -> (f64, f64)

Source

fn get_center(&self) -> (i32, i32, i32)

Source

fn get_direction(&self) -> RotateDirection

Source

fn set_axis(&self, axis: RotateAxis)

Source

fn set_bounds(&self, angle_start: f64, angle_end: f64)

Source

fn set_center(&self, x: i32, y: i32, z: i32)

Source

fn set_direction(&self, direction: RotateDirection)

Source

fn get_property_angle_end(&self) -> f64

Source

fn set_property_angle_end(&self, angle_end: f64)

Source

fn get_property_angle_start(&self) -> f64

Source

fn set_property_angle_start(&self, angle_start: f64)

Source

fn get_property_center_x(&self) -> i32

Source

fn set_property_center_x(&self, center_x: i32)

Source

fn get_property_center_y(&self) -> i32

Source

fn set_property_center_y(&self, center_y: i32)

Source

fn get_property_center_z(&self) -> i32

Source

fn set_property_center_z(&self, center_z: i32)

Source

fn connect_property_angle_end_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_angle_start_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_axis_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_center_x_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_center_y_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_center_z_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Source

fn connect_property_direction_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

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§