Trait IDVB_TOT_Impl
pub trait IDVB_TOT_Impl: IUnknownImpl {
// Required methods
fn Initialize(&self, psectionlist: Ref<'_, ISectionList>) -> Result<()>;
fn GetUTCTime(&self) -> Result<MPEG_DATE_AND_TIME>;
fn GetCountOfTableDescriptors(&self) -> Result<u32>;
fn GetTableDescriptorByIndex(
&self,
dwindex: u32,
) -> Result<IGenericDescriptor>;
fn GetTableDescriptorByTag(
&self,
btag: u8,
pdwcookie: *mut u32,
ppdescriptor: OutRef<'_, IGenericDescriptor>,
) -> Result<()>;
}
Required Methods§
fn Initialize(&self, psectionlist: Ref<'_, ISectionList>) -> Result<()>
fn GetUTCTime(&self) -> Result<MPEG_DATE_AND_TIME>
fn GetCountOfTableDescriptors(&self) -> Result<u32>
fn GetTableDescriptorByIndex(&self, dwindex: u32) -> Result<IGenericDescriptor>
fn GetTableDescriptorByTag( &self, btag: u8, pdwcookie: *mut u32, ppdescriptor: OutRef<'_, IGenericDescriptor>, ) -> 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.