pub trait IInterpolator_1Methods<T0: ClassIdentity>: ClassIdentity {
// Provided methods
fn ctor(self, type: Curve_Type, num: i32)
where Self: Sized { ... }
fn get_value(self) -> T0
where Self: Sized { ... }
fn get_prev(self) -> T0
where Self: Sized { ... }
fn set_prev(self, value: T0)
where Self: Sized { ... }
fn get_next(self) -> T0
where Self: Sized { ... }
fn set_next(self, value: T0)
where Self: Sized { ... }
fn get_goal(self) -> T0
where Self: Sized { ... }
fn is_equal(self, a: T0, b: T0) -> bool
where Self: Sized + Into<IlInstance> { ... }
fn set(self, value: T0, time: f32) -> bool
where Self: Sized { ... }
fn op_implicit(v: Interpolator_1<T0>) -> T0 { ... }
}Provided Methods§
fn ctor(self, type: Curve_Type, num: i32)where
Self: Sized,
fn get_value(self) -> T0where
Self: Sized,
fn get_prev(self) -> T0where
Self: Sized,
fn set_prev(self, value: T0)where
Self: Sized,
fn get_next(self) -> T0where
Self: Sized,
fn set_next(self, value: T0)where
Self: Sized,
fn get_goal(self) -> T0where
Self: Sized,
fn is_equal(self, a: T0, b: T0) -> boolwhere
Self: Sized + Into<IlInstance>,
fn set(self, value: T0, time: f32) -> boolwhere
Self: Sized,
fn op_implicit(v: Interpolator_1<T0>) -> T0
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.