Trait IRDPSRAPIAudioStream_Impl
pub trait IRDPSRAPIAudioStream_Impl: IUnknownImpl {
// Required methods
fn Initialize(&self) -> Result<i64>;
fn Start(&self) -> Result<()>;
fn Stop(&self) -> Result<()>;
fn GetBuffer(
&self,
ppbdata: *mut *mut u8,
pcbdata: *mut u32,
ptimestamp: *mut u64,
) -> Result<()>;
fn FreeBuffer(&self) -> Result<()>;
}
Required Methods§
fn Initialize(&self) -> Result<i64>
fn Start(&self) -> Result<()>
fn Stop(&self) -> Result<()>
fn GetBuffer( &self, ppbdata: *mut *mut u8, pcbdata: *mut u32, ptimestamp: *mut u64, ) -> Result<()>
fn FreeBuffer(&self) -> 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.