pub trait IDvbSubtitlingDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordLangId(&self, brecordindex: u8) -> Result<u32>;
    fn GetRecordSubtitlingType(&self, brecordindex: u8) -> Result<u8>;
    fn GetRecordCompositionPageID(&self, brecordindex: u8) -> Result<u16>;
    fn GetRecordAncillaryPageID(&self, brecordindex: u8) -> Result<u16>;
}

Required Methods§

fn GetTag(&self) -> Result<u8>

fn GetLength(&self) -> Result<u8>

fn GetCountOfRecords(&self) -> Result<u8>

fn GetRecordLangId(&self, brecordindex: u8) -> Result<u32>

fn GetRecordSubtitlingType(&self, brecordindex: u8) -> Result<u8>

fn GetRecordCompositionPageID(&self, brecordindex: u8) -> Result<u16>

fn GetRecordAncillaryPageID(&self, brecordindex: u8) -> Result<u16>

Object Safety§

This trait is not object safe.

Implementors§