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

Trait IIsdbEventGroupDescriptor_Impl

pub trait IIsdbEventGroupDescriptor_Impl: IUnknownImpl {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetGroupType(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordEvent(
        &self,
        brecordindex: u8,
        pwserviceid: *mut u16,
        pweventid: *mut u16,
    ) -> Result<()>;
    fn GetCountOfRefRecords(&self) -> Result<u8>;
    fn GetRefRecordEvent(
        &self,
        brecordindex: u8,
        pworiginalnetworkid: *mut u16,
        pwtransportstreamid: *mut u16,
        pwserviceid: *mut u16,
        pweventid: *mut u16,
    ) -> Result<()>;
}

Required Methods§

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

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

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

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

fn GetRecordEvent( &self, brecordindex: u8, pwserviceid: *mut u16, pweventid: *mut u16, ) -> Result<()>

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

fn GetRefRecordEvent( &self, brecordindex: u8, pworiginalnetworkid: *mut u16, pwtransportstreamid: *mut u16, pwserviceid: *mut u16, pweventid: *mut u16, ) -> 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§