windows::Win32::Media::DirectShow::Tv

Trait IIsdbEmergencyInformationDescriptor_Impl

pub trait IIsdbEmergencyInformationDescriptor_Impl: IUnknownImpl {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetServiceId(&self, brecordindex: u8) -> Result<u16>;
    fn GetStartEndFlag(&self, brecordindex: u8) -> Result<u8>;
    fn GetSignalLevel(&self, brecordindex: u8) -> Result<u8>;
    fn GetAreaCode(
        &self,
        brecordindex: u8,
        ppwval: *mut *mut u16,
        pbnumareacodes: *mut u8,
    ) -> Result<()>;
}

Required Methods§

fn GetTag(&self) -> Result<u8>

fn GetLength(&self) -> Result<u8>

fn GetCountOfRecords(&self) -> Result<u8>

fn GetServiceId(&self, brecordindex: u8) -> Result<u16>

fn GetStartEndFlag(&self, brecordindex: u8) -> Result<u8>

fn GetSignalLevel(&self, brecordindex: u8) -> Result<u8>

fn GetAreaCode( &self, brecordindex: u8, ppwval: *mut *mut u16, pbnumareacodes: *mut u8, ) -> 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§