pub trait IMbnRadio_Impl: Sized {
    // Required methods
    fn SoftwareRadioState(&self) -> Result<MBN_RADIO>;
    fn HardwareRadioState(&self) -> Result<MBN_RADIO>;
    fn SetSoftwareRadioState(&self, radiostate: MBN_RADIO) -> Result<u32>;
}

Required Methods§

fn SoftwareRadioState(&self) -> Result<MBN_RADIO>

fn HardwareRadioState(&self) -> Result<MBN_RADIO>

fn SetSoftwareRadioState(&self, radiostate: MBN_RADIO) -> Result<u32>

Object Safety§

This trait is not object safe.

Implementors§