Trait CycleStapable

Source
pub trait CycleStapable {
    // Required method
    fn sterp_qucy(&mut self, to: Self, step: Self, min: Self, max: Self) -> bool;
}

Required Methods§

Source

fn sterp_qucy(&mut self, to: Self, step: Self, min: Self, max: Self) -> bool

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.

Implementations on Foreign Types§

Source§

impl CycleStapable for f32

Source§

fn sterp_qucy(&mut self, to: f32, step: f32, min: f32, max: f32) -> bool

Source§

impl CycleStapable for f64

Source§

fn sterp_qucy(&mut self, to: f64, step: f64, min: f64, max: f64) -> bool

Source§

impl CycleStapable for i8

Source§

fn sterp_qucy(&mut self, to: i8, step: i8, min: i8, max: i8) -> bool

Source§

impl CycleStapable for i16

Source§

fn sterp_qucy(&mut self, to: i16, step: i16, min: i16, max: i16) -> bool

Source§

impl CycleStapable for i32

Source§

fn sterp_qucy(&mut self, to: i32, step: i32, min: i32, max: i32) -> bool

Source§

impl CycleStapable for i64

Source§

fn sterp_qucy(&mut self, to: i64, step: i64, min: i64, max: i64) -> bool

Source§

impl CycleStapable for i128

Source§

fn sterp_qucy(&mut self, to: i128, step: i128, min: i128, max: i128) -> bool

Source§

impl CycleStapable for isize

Source§

fn sterp_qucy(&mut self, to: isize, step: isize, min: isize, max: isize) -> bool

Implementors§