pub trait IInterpolatorTimeMethods: IInterpolatorTime {
Show 15 methods
// Provided methods
fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>) { ... }
fn get_time(self) -> f32 { ... }
fn get_is_first(self) -> bool { ... }
fn get_is_stability(self) -> bool { ... }
fn get_is_next_stability(self) -> bool { ... }
fn get_is_running(self) -> bool { ... }
fn reset(self) { ... }
fn instant(self) { ... }
fn set_curve(self, type: impl Into<Curve_Type>, num: impl Into<i32>) { ... }
fn set_curve_2(self, type: impl Into<Curve_Type>) { ... }
fn get_rate(self) -> f32 { ... }
fn get_value(self, prev: impl Into<f32>, next: impl Into<f32>) -> f32 { ... }
fn set_time(self, time: impl Into<f32>) { ... }
fn get_next_tick(self) -> f32 { ... }
fn tick(self, is_fade_skip: impl Into<bool>) -> bool { ... }
}Provided Methods§
Sourcefn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
fn ctor(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
.ctor(crate::app::curve::Curve_Type, i32) overload
Sourcefn get_is_first(self) -> bool
fn get_is_first(self) -> bool
get_IsFirst() overload
Sourcefn get_is_stability(self) -> bool
fn get_is_stability(self) -> bool
get_IsStability() overload
Sourcefn get_is_next_stability(self) -> bool
fn get_is_next_stability(self) -> bool
get_IsNextStability() overload
Sourcefn get_is_running(self) -> bool
fn get_is_running(self) -> bool
get_IsRunning() overload
Sourcefn set_curve(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
fn set_curve(self, type: impl Into<Curve_Type>, num: impl Into<i32>)
SetCurve(crate::app::curve::Curve_Type, i32) overload
Sourcefn set_curve_2(self, type: impl Into<Curve_Type>)
fn set_curve_2(self, type: impl Into<Curve_Type>)
SetCurve(crate::app::curve::Curve_Type) overload
Sourcefn get_value(self, prev: impl Into<f32>, next: impl Into<f32>) -> f32
fn get_value(self, prev: impl Into<f32>, next: impl Into<f32>) -> f32
GetValue(f32, f32) overload
Sourcefn get_next_tick(self) -> f32
fn get_next_tick(self) -> f32
get_NextTick() 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§
impl<__T: IInterpolatorTime> IInterpolatorTimeMethods for __T
Available on crate feature
app-interpolatortime only.