pub trait IBaseVideoMixer_Impl: Sized {
    // Required methods
    fn SetLeadPin(&self, ipin: i32) -> Result<()>;
    fn GetLeadPin(&self) -> Result<i32>;
    fn GetInputPinCount(&self) -> Result<i32>;
    fn IsUsingClock(&self) -> Result<i32>;
    fn SetUsingClock(&self, bvalue: i32) -> Result<()>;
    fn GetClockPeriod(&self) -> Result<i32>;
    fn SetClockPeriod(&self, bvalue: i32) -> Result<()>;
}

Required Methods§

fn SetLeadPin(&self, ipin: i32) -> Result<()>

fn GetLeadPin(&self) -> Result<i32>

fn GetInputPinCount(&self) -> Result<i32>

fn IsUsingClock(&self) -> Result<i32>

fn SetUsingClock(&self, bvalue: i32) -> Result<()>

fn GetClockPeriod(&self) -> Result<i32>

fn SetClockPeriod(&self, bvalue: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§