pub trait IDvbServiceDescriptor_Impl: Sized {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetServiceType(&self) -> Result<u8>;
    fn GetServiceProviderName(&self) -> Result<*mut u8>;
    fn GetServiceProviderNameW(&self) -> Result<BSTR>;
    fn GetServiceName(&self) -> Result<*mut u8>;
    fn GetProcessedServiceName(&self) -> Result<BSTR>;
    fn GetServiceNameEmphasized(&self) -> Result<BSTR>;
}

Required Methods§

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

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

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

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

fn GetServiceProviderNameW(&self) -> Result<BSTR>

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

fn GetProcessedServiceName(&self) -> Result<BSTR>

fn GetServiceNameEmphasized(&self) -> Result<BSTR>

Object Safety§

This trait is not object safe.

Implementors§