Trait IAMAnalogVideoDecoder_Impl
pub trait IAMAnalogVideoDecoder_Impl: IUnknownImpl {
// Required methods
fn AvailableTVFormats(&self) -> Result<i32>;
fn SetTVFormat(&self, lanalogvideostandard: i32) -> Result<()>;
fn TVFormat(&self) -> Result<i32>;
fn HorizontalLocked(&self) -> Result<i32>;
fn SetVCRHorizontalLocking(&self, lvcrhorizontallocking: i32) -> Result<()>;
fn VCRHorizontalLocking(&self) -> Result<i32>;
fn NumberOfLines(&self) -> Result<i32>;
fn SetOutputEnable(&self, loutputenable: i32) -> Result<()>;
fn OutputEnable(&self) -> Result<i32>;
}
Required Methods§
fn AvailableTVFormats(&self) -> Result<i32>
fn SetTVFormat(&self, lanalogvideostandard: i32) -> Result<()>
fn TVFormat(&self) -> Result<i32>
fn HorizontalLocked(&self) -> Result<i32>
fn SetVCRHorizontalLocking(&self, lvcrhorizontallocking: i32) -> Result<()>
fn VCRHorizontalLocking(&self) -> Result<i32>
fn NumberOfLines(&self) -> Result<i32>
fn SetOutputEnable(&self, loutputenable: i32) -> Result<()>
fn OutputEnable(&self) -> Result<i32>
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.