Trait IAudioAmbisonicsControl_Impl
pub trait IAudioAmbisonicsControl_Impl: IUnknownImpl {
// Required methods
fn SetData(
&self,
pambisonicsparams: *const AMBISONICS_PARAMS,
cbambisonicsparams: u32,
) -> Result<()>;
fn SetHeadTracking(&self, benableheadtracking: BOOL) -> Result<()>;
fn GetHeadTracking(&self) -> Result<BOOL>;
fn SetRotation(&self, x: f32, y: f32, z: f32, w: f32) -> Result<()>;
}
Required Methods§
fn SetData( &self, pambisonicsparams: *const AMBISONICS_PARAMS, cbambisonicsparams: u32, ) -> Result<()>
fn SetHeadTracking(&self, benableheadtracking: BOOL) -> Result<()>
fn GetHeadTracking(&self) -> Result<BOOL>
fn SetRotation(&self, x: f32, y: f32, z: f32, w: f32) -> Result<()>
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.