Trait IDVB_EIT_Impl
pub trait IDVB_EIT_Impl: IUnknownImpl {
Show 21 methods
// Required methods
fn Initialize(
&self,
psectionlist: Ref<'_, ISectionList>,
pmpegdata: Ref<'_, 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: OutRef<'_, 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: Ref<'_, ISectionList>, pmpegdata: Ref<'_, 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: OutRef<'_, 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>
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.