Skip to main content

IEventDemoSequence_ColorFaderMethods

Trait IEventDemoSequence_ColorFaderMethods 

Source
pub trait IEventDemoSequence_ColorFaderMethods: IEventDemoSequence_ColorFader {
    // Provided methods
    fn ctor(self) { ... }
    fn reset(self) { ... }
    fn get(self) -> Color { ... }
    fn set(self, color: impl Into<Color>, msec: impl Into<f32>) { ... }
    fn tick(self) -> Color { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn reset(self)

Reset() overload

Source

fn get(self) -> Color

Get() overload

Source

fn set(self, color: impl Into<Color>, msec: impl Into<f32>)

Set(crate::unity_engine::color::Color, f32) overload

Source

fn tick(self) -> Color

Tick() 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§

Source§

impl<__T: IEventDemoSequence_ColorFader> IEventDemoSequence_ColorFaderMethods for __T

Available on crate feature app-eventdemosequence only.