Trait IAudioEndpoint_Impl
pub trait IAudioEndpoint_Impl: IUnknownImpl {
// Required methods
fn GetFrameFormat(&self) -> Result<*mut WAVEFORMATEX>;
fn GetFramesPerPacket(&self) -> Result<u32>;
fn GetLatency(&self) -> Result<i64>;
fn SetStreamFlags(&self, streamflags: u32) -> Result<()>;
fn SetEventHandle(&self, eventhandle: HANDLE) -> Result<()>;
}
Required Methods§
fn GetFrameFormat(&self) -> Result<*mut WAVEFORMATEX>
fn GetFramesPerPacket(&self) -> Result<u32>
fn GetLatency(&self) -> Result<i64>
fn SetStreamFlags(&self, streamflags: u32) -> Result<()>
fn SetEventHandle(&self, eventhandle: HANDLE) -> 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.