Skip to main content

IInterpolator_1Methods

Trait IInterpolator_1Methods 

Source
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§

Source

fn ctor(self, type: Curve_Type, num: i32)
where Self: Sized,

Source

fn get_value(self) -> T0
where Self: Sized,

Source

fn get_prev(self) -> T0
where Self: Sized,

Source

fn set_prev(self, value: T0)
where Self: Sized,

Source

fn get_next(self) -> T0
where Self: Sized,

Source

fn set_next(self, value: T0)
where Self: Sized,

Source

fn get_goal(self) -> T0
where Self: Sized,

Source

fn is_equal(self, a: T0, b: T0) -> bool
where Self: Sized + Into<IlInstance>,

Source

fn set(self, value: T0, time: f32) -> bool
where Self: Sized,

Source

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.

Implementors§