Trait IBaseVideoMixer_Impl
pub trait IBaseVideoMixer_Impl: IUnknownImpl {
// 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<()>
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.