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

Trait IISDB_LDT_Impl

pub trait IISDB_LDT_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        psectionlist: Ref<'_, ISectionList>,
        pmpegdata: Ref<'_, IMpeg2Data>,
    ) -> Result<()>;
    fn GetVersionNumber(&self) -> Result<u8>;
    fn GetOriginalServiceId(&self) -> Result<u16>;
    fn GetTransportStreamId(&self) -> Result<u16>;
    fn GetOriginalNetworkId(&self) -> Result<u16>;
    fn GetCountOfRecords(&self) -> Result<u32>;
    fn GetRecordDescriptionId(&self, dwrecordindex: u32) -> Result<u16>;
    fn GetRecordCountOfDescriptors(&self, dwrecordindex: u32) -> Result<u32>;
    fn GetRecordDescriptorByIndex(
        &self,
        dwrecordindex: u32,
        dwindex: u32,
    ) -> Result<IGenericDescriptor>;
    fn GetRecordDescriptorByTag(
        &self,
        dwrecordindex: u32,
        btag: u8,
        pdwcookie: *mut u32,
        ppdescriptor: OutRef<'_, IGenericDescriptor>,
    ) -> Result<()>;
    fn GetVersionHash(&self) -> Result<u32>;
}

Required Methods§

fn Initialize( &self, psectionlist: Ref<'_, ISectionList>, pmpegdata: Ref<'_, IMpeg2Data>, ) -> Result<()>

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

fn GetOriginalServiceId(&self) -> Result<u16>

fn GetTransportStreamId(&self) -> Result<u16>

fn GetOriginalNetworkId(&self) -> Result<u16>

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

fn GetRecordDescriptionId(&self, dwrecordindex: u32) -> Result<u16>

fn GetRecordCountOfDescriptors(&self, dwrecordindex: u32) -> Result<u32>

fn GetRecordDescriptorByIndex( &self, dwrecordindex: u32, dwindex: u32, ) -> Result<IGenericDescriptor>

fn GetRecordDescriptorByTag( &self, dwrecordindex: u32, btag: u8, pdwcookie: *mut u32, ppdescriptor: OutRef<'_, IGenericDescriptor>, ) -> Result<()>

fn GetVersionHash(&self) -> Result<u32>

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§