Skip to main content

ISampleWaveMethods

Trait ISampleWaveMethods 

Source
pub trait ISampleWaveMethods: ISampleWave {
    // Provided methods
    fn start(self) { ... }
    fn update(self) { ... }
    fn update_wave(self) { ... }
    fn reset_wave(self) { ... }
    fn update_color(self, color: impl Into<Color>) { ... }
    fn create_material(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn update_wave(self)

UpdateWave() overload

Source

fn reset_wave(self)

ResetWave() overload

Source

fn update_color(self, color: impl Into<Color>)

UpdateColor(crate::unity_engine::color::Color) overload

Source

fn create_material(self)

CreateMaterial() overload

Source

fn ctor(self)

.ctor() 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: ISampleWave> ISampleWaveMethods for __T

Available on crate feature root-samplewave only.