pub trait ISIInbandEPG_Impl: Sized {
    // Required methods
    fn StartSIEPGScan(&self) -> Result<()>;
    fn StopSIEPGScan(&self) -> Result<()>;
    fn IsSIEPGScanRunning(&self) -> Result<BOOL>;
}

Required Methods§

fn StartSIEPGScan(&self) -> Result<()>

fn StopSIEPGScan(&self) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§