pub trait IIsdbLogoTransmissionDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetLogoTransmissionType(&self) -> Result<u8>;
    fn GetLogoId(&self) -> Result<u16>;
    fn GetLogoVersion(&self) -> Result<u16>;
    fn GetDownloadDataId(&self) -> Result<u16>;
    fn GetLogoCharW(&self, convmode: DVB_STRCONV_MODE) -> Result<BSTR>;
}

Required Methods§

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

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

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

fn GetLogoId(&self) -> Result<u16>

fn GetLogoVersion(&self) -> Result<u16>

fn GetDownloadDataId(&self) -> Result<u16>

fn GetLogoCharW(&self, convmode: DVB_STRCONV_MODE) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§