Trait IAMStreamSelect_Impl
pub trait IAMStreamSelect_Impl: IUnknownImpl {
// Required methods
fn Count(&self) -> Result<u32>;
fn Info(
&self,
lindex: i32,
ppmt: *mut *mut AM_MEDIA_TYPE,
pdwflags: *mut u32,
plcid: *mut u32,
pdwgroup: *mut u32,
ppszname: *mut PWSTR,
ppobject: OutRef<'_, IUnknown>,
ppunk: OutRef<'_, IUnknown>,
) -> Result<()>;
fn Enable(&self, lindex: i32, dwflags: u32) -> Result<()>;
}
Required Methods§
fn Count(&self) -> Result<u32>
fn Info( &self, lindex: i32, ppmt: *mut *mut AM_MEDIA_TYPE, pdwflags: *mut u32, plcid: *mut u32, pdwgroup: *mut u32, ppszname: *mut PWSTR, ppobject: OutRef<'_, IUnknown>, ppunk: OutRef<'_, IUnknown>, ) -> Result<()>
fn Enable(&self, lindex: i32, dwflags: u32) -> 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.