pub trait IDVB_SDT_Impl: Sized {
Show 18 methods // Required methods fn Initialize( &self, psectionlist: Option<&ISectionList>, pmpegdata: Option<&IMpeg2Data> ) -> Result<()>; fn GetVersionNumber(&self) -> Result<u8>; fn GetTransportStreamId(&self) -> Result<u16>; fn GetOriginalNetworkId(&self) -> Result<u16>; fn GetCountOfRecords(&self) -> Result<u32>; fn GetRecordServiceId(&self, dwrecordindex: u32) -> Result<u16>; fn GetRecordEITScheduleFlag(&self, dwrecordindex: u32) -> Result<BOOL>; fn GetRecordEITPresentFollowingFlag( &self, dwrecordindex: u32 ) -> Result<BOOL>; 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_SDT>; 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 GetTransportStreamId(&self) -> Result<u16>

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

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

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

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

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

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_SDT>

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

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

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

Object Safety§

This trait is not object safe.

Implementors§