Skip to main content

ITrailTrack

Trait ITrailTrack 

Source
pub trait ITrailTrack: IObject {
    // Provided methods
    fn root_x(self) -> AnimationCurve { ... }
    fn set_root_x(self, value: AnimationCurve) { ... }
    fn root_y(self) -> AnimationCurve { ... }
    fn set_root_y(self, value: AnimationCurve) { ... }
    fn root_z(self) -> AnimationCurve { ... }
    fn set_root_z(self, value: AnimationCurve) { ... }
    fn tip_x(self) -> AnimationCurve { ... }
    fn set_tip_x(self, value: AnimationCurve) { ... }
    fn tip_y(self) -> AnimationCurve { ... }
    fn set_tip_y(self, value: AnimationCurve) { ... }
    fn tip_z(self) -> AnimationCurve { ... }
    fn set_tip_z(self, value: AnimationCurve) { ... }
}

Provided Methods§

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§