pub trait IDVB_EIT_Impl: Sized {
Show 21 methods // Required methods fn Initialize( &self, psectionlist: Option<&ISectionList>, pmpegdata: Option<&IMpeg2Data> ) -> Result<()>; fn GetVersionNumber(&self) -> Result<u8>; fn GetServiceId(&self) -> Result<u16>; fn GetTransportStreamId(&self) -> Result<u16>; fn GetOriginalNetworkId(&self) -> Result<u16>; fn GetSegmentLastSectionNumber(&self) -> Result<u8>; fn GetLastTableId(&self) -> Result<u8>; fn GetCountOfRecords(&self) -> Result<u32>; fn GetRecordEventId(&self, dwrecordindex: u32) -> Result<u16>; fn GetRecordStartTime( &self, dwrecordindex: u32 ) -> Result<MPEG_DATE_AND_TIME>; fn GetRecordDuration(&self, dwrecordindex: u32) -> Result<MPEG_TIME>; fn GetRecordRunningStatus(&self, dwrecordindex: u32) -> Result<u8>; fn GetRecordFreeCAMode(&self, dwrecordindex: u32) -> Result<BOOL>; 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: *mut Option<IGenericDescriptor> ) -> Result<()>; fn RegisterForNextTable(&self, hnexttableavailable: HANDLE) -> Result<()>; fn GetNextTable(&self) -> Result<IDVB_EIT>; fn RegisterForWhenCurrent(&self, hnexttableiscurrent: HANDLE) -> Result<()>; fn ConvertNextToCurrent(&self) -> Result<()>; fn GetVersionHash(&self) -> Result<u32>;
}

Required Methods§

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

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

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

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

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

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

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

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

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

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

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

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

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

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: *mut Option<IGenericDescriptor> ) -> Result<()>

fn RegisterForNextTable(&self, hnexttableavailable: HANDLE) -> Result<()>

fn GetNextTable(&self) -> Result<IDVB_EIT>

fn RegisterForWhenCurrent(&self, hnexttableiscurrent: HANDLE) -> Result<()>

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

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

Object Safety§

This trait is not object safe.

Implementors§