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

Trait IISDB_CDT_Impl

pub trait IISDB_CDT_Impl: IUnknownImpl {
    // Required methods
    fn Initialize(
        &self,
        psectionlist: Ref<'_, ISectionList>,
        pmpegdata: Ref<'_, IMpeg2Data>,
        bsectionnumber: u8,
    ) -> Result<()>;
    fn GetVersionNumber(&self) -> Result<u8>;
    fn GetDownloadDataId(&self) -> Result<u16>;
    fn GetSectionNumber(&self) -> Result<u8>;
    fn GetOriginalNetworkId(&self) -> Result<u16>;
    fn GetDataType(&self) -> Result<u8>;
    fn GetCountOfTableDescriptors(&self) -> Result<u32>;
    fn GetTableDescriptorByIndex(
        &self,
        dwindex: u32,
    ) -> Result<IGenericDescriptor>;
    fn GetTableDescriptorByTag(
        &self,
        btag: u8,
        pdwcookie: *mut u32,
        ppdescriptor: OutRef<'_, IGenericDescriptor>,
    ) -> Result<()>;
    fn GetSizeOfDataModule(&self) -> Result<u32>;
    fn GetDataModule(&self) -> Result<*mut u8>;
    fn GetVersionHash(&self) -> Result<u32>;
}

Required Methods§

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

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

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

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

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

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

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

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

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

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

fn GetDataModule(&self) -> Result<*mut u8>

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§