Trait ITunerCap_Impl
pub trait ITunerCap_Impl: IUnknownImpl {
// Required methods
fn get_SupportedNetworkTypes(
&self,
ulcnetworktypesmax: u32,
pulcnetworktypes: *mut u32,
pguidnetworktypes: *mut GUID,
) -> Result<()>;
fn get_SupportedVideoFormats(
&self,
pulamtunermodetype: *mut u32,
pulanalogvideostandard: *mut u32,
) -> Result<()>;
fn get_AuxInputCount(
&self,
pulcompositecount: *mut u32,
pulsvideocount: *mut u32,
) -> Result<()>;
}
Required Methods§
fn get_SupportedNetworkTypes( &self, ulcnetworktypesmax: u32, pulcnetworktypes: *mut u32, pguidnetworktypes: *mut GUID, ) -> Result<()>
fn get_SupportedVideoFormats( &self, pulamtunermodetype: *mut u32, pulanalogvideostandard: *mut u32, ) -> Result<()>
fn get_AuxInputCount( &self, pulcompositecount: *mut u32, pulsvideocount: *mut 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.