pub trait IDvbFrequencyListDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCodingType(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordCentreFrequency(&self, brecordindex: u8) -> Result<u32>;
}

Required Methods§

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

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

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

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

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

Object Safety§

This trait is not object safe.

Implementors§