windows::Win32::Media::DirectShow

Trait IAMTVAudio_Impl

pub trait IAMTVAudio_Impl: IUnknownImpl {
    // Required methods
    fn GetHardwareSupportedTVAudioModes(&self) -> Result<i32>;
    fn GetAvailableTVAudioModes(&self) -> Result<i32>;
    fn TVAudioMode(&self) -> Result<i32>;
    fn SetTVAudioMode(&self, lmode: i32) -> Result<()>;
    fn RegisterNotificationCallBack(
        &self,
        pnotify: Ref<'_, IAMTunerNotification>,
        levents: i32,
    ) -> Result<()>;
    fn UnRegisterNotificationCallBack(
        &self,
        pnotify: Ref<'_, IAMTunerNotification>,
    ) -> Result<()>;
}

Required Methods§

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

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

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

fn SetTVAudioMode(&self, lmode: i32) -> Result<()>

fn RegisterNotificationCallBack( &self, pnotify: Ref<'_, IAMTunerNotification>, levents: i32, ) -> Result<()>

fn UnRegisterNotificationCallBack( &self, pnotify: Ref<'_, IAMTunerNotification>, ) -> Result<()>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§