pub trait IChannelTuneRequest_Impl: Sized + ITuneRequest_Impl {
    // Required methods
    fn Channel(&self) -> Result<i32>;
    fn SetChannel(&self, channel: i32) -> Result<()>;
}

Required Methods§

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

fn SetChannel(&self, channel: i32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§