Trait IMpeg2Data_Impl
pub trait IMpeg2Data_Impl: IUnknownImpl {
// Required methods
fn GetSection(
&self,
pid: u16,
tid: u8,
pfilter: *const MPEG2_FILTER,
dwtimeout: u32,
) -> Result<ISectionList>;
fn GetTable(
&self,
pid: u16,
tid: u8,
pfilter: *const MPEG2_FILTER,
dwtimeout: u32,
) -> Result<ISectionList>;
fn GetStreamOfSections(
&self,
pid: u16,
tid: u8,
pfilter: *const MPEG2_FILTER,
hdatareadyevent: HANDLE,
) -> Result<IMpeg2Stream>;
}
Required Methods§
fn GetSection( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, dwtimeout: u32, ) -> Result<ISectionList>
fn GetTable( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, dwtimeout: u32, ) -> Result<ISectionList>
fn GetStreamOfSections( &self, pid: u16, tid: u8, pfilter: *const MPEG2_FILTER, hdatareadyevent: HANDLE, ) -> Result<IMpeg2Stream>
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.