pub trait IBPCSatelliteTuner_Impl: Sized + IAMTuner_Impl {
    // Required methods
    fn get_DefaultSubChannelTypes(
        &self,
        pldefaultvideotype: *mut i32,
        pldefaultaudiotype: *mut i32
    ) -> Result<()>;
    fn put_DefaultSubChannelTypes(
        &self,
        ldefaultvideotype: i32,
        ldefaultaudiotype: i32
    ) -> Result<()>;
    fn IsTapingPermitted(&self) -> Result<()>;
}

Required Methods§

fn get_DefaultSubChannelTypes( &self, pldefaultvideotype: *mut i32, pldefaultaudiotype: *mut i32 ) -> Result<()>

fn put_DefaultSubChannelTypes( &self, ldefaultvideotype: i32, ldefaultaudiotype: i32 ) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§