pub trait IMpeg2Data_Impl: Sized {
    // Required methods
    fn GetSection(
        &self,
        pid: u16,
        tid: u8,
        pfilter: *const MPEG2_FILTER,
        dwtimeout: u32
    ) -> Result<ISectionList>;
    fn GetTable(
        &self,
        pid: u16,
        tid: u8,
        pfilter: *const MPEG2_FILTER,
        dwtimeout: u32
    ) -> Result<ISectionList>;
    fn GetStreamOfSections(
        &self,
        pid: u16,
        tid: u8,
        pfilter: *const MPEG2_FILTER,
        hdatareadyevent: HANDLE
    ) -> Result<IMpeg2Stream>;
}

Required Methods§

fn GetSection( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, dwtimeout: u32 ) -> Result<ISectionList>

fn GetTable( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, dwtimeout: u32 ) -> Result<ISectionList>

fn GetStreamOfSections( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, hdatareadyevent: HANDLE ) -> Result<IMpeg2Stream>

Object Safety§

This trait is not object safe.

Implementors§