pub trait ISectionList_Impl: Sized {
    // Required methods
    fn Initialize(
        &self,
        requesttype: MPEG_REQUEST_TYPE,
        pmpeg2data: Option<&IMpeg2Data>,
        pcontext: *const MPEG_CONTEXT,
        pid: u16,
        tid: u8,
        pfilter: *const MPEG2_FILTER,
        timeout: u32,
        hdoneevent: HANDLE
    ) -> Result<()>;
    fn InitializeWithRawSections(
        &self,
        pmplsections: *const MPEG_PACKET_LIST
    ) -> Result<()>;
    fn CancelPendingRequest(&self) -> Result<()>;
    fn GetNumberOfSections(&self) -> Result<u16>;
    fn GetSectionData(
        &self,
        sectionnumber: u16,
        pdwrawpacketlength: *mut u32,
        ppsection: *mut *mut SECTION
    ) -> Result<()>;
    fn GetProgramIdentifier(&self, ppid: *const u16) -> Result<()>;
    fn GetTableIdentifier(&self, ptableid: *const u8) -> Result<()>;
}

Required Methods§

fn Initialize( &self, requesttype: MPEG_REQUEST_TYPE, pmpeg2data: Option<&IMpeg2Data>, pcontext: *const MPEG_CONTEXT, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, timeout: u32, hdoneevent: HANDLE ) -> Result<()>

fn InitializeWithRawSections( &self, pmplsections: *const MPEG_PACKET_LIST ) -> Result<()>

fn CancelPendingRequest(&self) -> Result<()>

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

fn GetSectionData( &self, sectionnumber: u16, pdwrawpacketlength: *mut u32, ppsection: *mut *mut SECTION ) -> Result<()>

fn GetProgramIdentifier(&self, ppid: *const u16) -> Result<()>

fn GetTableIdentifier(&self, ptableid: *const u8) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§