Trait IAudioMeterInformation_Impl
pub trait IAudioMeterInformation_Impl: IUnknownImpl {
// Required methods
fn GetPeakValue(&self) -> Result<f32>;
fn GetMeteringChannelCount(&self) -> Result<u32>;
fn GetChannelsPeakValues(
&self,
u32channelcount: u32,
afpeakvalues: *mut f32,
) -> Result<()>;
fn QueryHardwareSupport(&self) -> Result<u32>;
}
Required Methods§
fn GetPeakValue(&self) -> Result<f32>
fn GetMeteringChannelCount(&self) -> Result<u32>
fn GetChannelsPeakValues( &self, u32channelcount: u32, afpeakvalues: *mut f32, ) -> Result<()>
fn QueryHardwareSupport(&self) -> Result<u32>
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.