pub trait IConfigAviMux_Impl: Sized {
    // Required methods
    fn SetMasterStream(&self, istream: i32) -> Result<()>;
    fn GetMasterStream(&self) -> Result<i32>;
    fn SetOutputCompatibilityIndex(&self, foldindex: BOOL) -> Result<()>;
    fn GetOutputCompatibilityIndex(&self) -> Result<BOOL>;
}

Required Methods§

fn SetMasterStream(&self, istream: i32) -> Result<()>

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

fn SetOutputCompatibilityIndex(&self, foldindex: BOOL) -> Result<()>

fn GetOutputCompatibilityIndex(&self) -> Result<BOOL>

Object Safety§

This trait is not object safe.

Implementors§