pub trait IDVB_TOT_Impl: Sized {
    // Required methods
    fn Initialize(&self, psectionlist: Option<&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: *mut Option<IGenericDescriptor>
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§