pub trait IDvbNetworkNameDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetNetworkName(&self) -> Result<*mut u8>;
    fn GetNetworkNameW(&self, convmode: DVB_STRCONV_MODE) -> Result<BSTR>;
}

Required Methods§

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

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

fn GetNetworkName(&self) -> Result<*mut u8>

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

Object Safety§

This trait is not object safe.

Implementors§