pub trait IATSCTuningSpace_Impl: Sized + IAnalogTVTuningSpace_Impl {
    // Required methods
    fn MinMinorChannel(&self) -> Result<i32>;
    fn SetMinMinorChannel(&self, newminminorchannelval: i32) -> Result<()>;
    fn MaxMinorChannel(&self) -> Result<i32>;
    fn SetMaxMinorChannel(&self, newmaxminorchannelval: i32) -> Result<()>;
    fn MinPhysicalChannel(&self) -> Result<i32>;
    fn SetMinPhysicalChannel(&self, newminphysicalchannelval: i32) -> Result<()>;
    fn MaxPhysicalChannel(&self) -> Result<i32>;
    fn SetMaxPhysicalChannel(&self, newmaxphysicalchannelval: i32) -> Result<()>;
}

Required Methods§

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

fn SetMinMinorChannel(&self, newminminorchannelval: i32) -> Result<()>

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

fn SetMaxMinorChannel(&self, newmaxminorchannelval: i32) -> Result<()>

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

fn SetMinPhysicalChannel(&self, newminphysicalchannelval: i32) -> Result<()>

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

fn SetMaxPhysicalChannel(&self, newmaxphysicalchannelval: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§