Trait ISectionList_Impl
pub trait ISectionList_Impl: IUnknownImpl {
// Required methods
fn Initialize(
&self,
requesttype: MPEG_REQUEST_TYPE,
pmpeg2data: Ref<'_, 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: Ref<'_, 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<()>
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.