Skip to main content

ISoundManager_ParamFaderMethods

Trait ISoundManager_ParamFaderMethods 

Source
pub trait ISoundManager_ParamFaderMethods: ISoundManager_ParamFader {
    // Provided methods
    fn ctor(self) { ... }
    fn reset(self) { ... }
    fn get(self) -> f32 { ... }
    fn set(self, param: impl Into<f32>, msec: impl Into<i32>) { ... }
    fn tick(self) { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn reset(self)

Reset() overload

Source

fn get(self) -> f32

Get() overload

Source

fn set(self, param: impl Into<f32>, msec: impl Into<i32>)

Set(f32, i32) overload

Source

fn tick(self)

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: ISoundManager_ParamFader> ISoundManager_ParamFaderMethods for __T

Available on crate feature app-soundmanager only.