Skip to main content

IInterpolatorTime

Trait IInterpolatorTime 

Source
pub trait IInterpolatorTime: IObject {
    // Provided methods
    fn m_time(self) -> f32 { ... }
    fn set_m_time(self, value: f32) { ... }
    fn m_tick(self) -> f32 { ... }
    fn set_m_tick(self, value: f32) { ... }
    fn m_type(self) -> Curve_Type { ... }
    fn set_m_type(self, value: Curve_Type) { ... }
    fn m_num(self) -> i32 { ... }
    fn set_m_num(self, value: i32) { ... }
    fn m_is_first(self) -> bool { ... }
    fn set_m_is_first(self, value: bool) { ... }
    fn m_is_dirty(self) -> bool { ... }
    fn set_m_is_dirty(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_time(self) -> f32

Source

fn set_m_time(self, value: f32)

Source

fn m_tick(self) -> f32

Source

fn set_m_tick(self, value: f32)

Source

fn m_type(self) -> Curve_Type

Source

fn set_m_type(self, value: Curve_Type)

Source

fn m_num(self) -> i32

Source

fn set_m_num(self, value: i32)

Source

fn m_is_first(self) -> bool

Source

fn set_m_is_first(self, value: bool)

Source

fn m_is_dirty(self) -> bool

Source

fn set_m_is_dirty(self, value: 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.

Implementors§