pub trait IAnalogRadioTuningSpace2_Impl: Sized + IAnalogRadioTuningSpace_Impl {
    // Required methods
    fn CountryCode(&self) -> Result<i32>;
    fn SetCountryCode(&self, newcountrycodeval: i32) -> Result<()>;
}

Required Methods§

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

fn SetCountryCode(&self, newcountrycodeval: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§