pub trait ISoundSystem_LipSyncDataMethods: ISoundSystem_LipSyncData {
Show 22 methods
// Provided methods
fn get_msec(self) -> i32 { ... }
fn set_msec(self, value: impl Into<i32>) { ... }
fn get_width(self) -> f32 { ... }
fn set_width(self, value: impl Into<f32>) { ... }
fn get_height(self) -> f32 { ... }
fn set_height(self, value: impl Into<f32>) { ... }
fn get_tongue(self) -> f32 { ... }
fn set_tongue(self, value: impl Into<f32>) { ... }
fn get_a(self) -> f32 { ... }
fn set_a(self, value: impl Into<f32>) { ... }
fn get_i(self) -> f32 { ... }
fn set_i(self, value: impl Into<f32>) { ... }
fn get_u(self) -> f32 { ... }
fn set_u(self, value: impl Into<f32>) { ... }
fn get_e(self) -> f32 { ... }
fn set_e(self, value: impl Into<f32>) { ... }
fn get_o(self) -> f32 { ... }
fn set_o(self, value: impl Into<f32>) { ... }
fn get_vol(self) -> f32 { ... }
fn set_vol(self, value: impl Into<f32>) { ... }
fn set_data(self, data: impl Into<SoundSystem_LipSyncStructData>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_height(self) -> f32
fn get_height(self) -> f32
get_Height() overload
Sourcefn set_height(self, value: impl Into<f32>)
fn set_height(self, value: impl Into<f32>)
set_Height(f32) overload
Sourcefn get_tongue(self) -> f32
fn get_tongue(self) -> f32
get_Tongue() overload
Sourcefn set_tongue(self, value: impl Into<f32>)
fn set_tongue(self, value: impl Into<f32>)
set_Tongue(f32) overload
Sourcefn set_data(self, data: impl Into<SoundSystem_LipSyncStructData>)
fn set_data(self, data: impl Into<SoundSystem_LipSyncStructData>)
SetData(crate::app::soundsystem::SoundSystem_LipSyncStructData) 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§
impl<__T: ISoundSystem_LipSyncData> ISoundSystem_LipSyncDataMethods for __T
Available on crate feature
app-soundsystem only.