pub trait IAMAnalogVideoDecoder_Impl: Sized {
    // 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>

Object Safety§

This trait is not object safe.

Implementors§