Trait IAudioDeviceEndpoint_Impl
pub trait IAudioDeviceEndpoint_Impl: IUnknownImpl {
// Required methods
fn SetBuffer(
&self,
maxperiod: i64,
u32latencycoefficient: u32,
) -> Result<()>;
fn GetRTCaps(&self) -> Result<BOOL>;
fn GetEventDrivenCapable(&self) -> Result<BOOL>;
fn WriteExclusiveModeParametersToSharedMemory(
&self,
htargetprocess: usize,
hnsperiod: i64,
hnsbufferduration: i64,
u32latencycoefficient: u32,
pu32sharedmemorysize: *mut u32,
phsharedmemory: *mut usize,
) -> Result<()>;
}
Required Methods§
fn SetBuffer(&self, maxperiod: i64, u32latencycoefficient: u32) -> Result<()>
fn GetRTCaps(&self) -> Result<BOOL>
fn GetEventDrivenCapable(&self) -> Result<BOOL>
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.