pub trait IDvbServiceAttributeDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordServiceId(&self, brecordindex: u8) -> Result<u16>;
    fn GetRecordNumericSelectionFlag(&self, brecordindex: u8) -> Result<BOOL>;
    fn GetRecordVisibleServiceFlag(&self, brecordindex: u8) -> Result<BOOL>;
}

Required Methods§

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

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§