Trait IDvbMultilingualServiceNameDescriptor_Impl
pub trait IDvbMultilingualServiceNameDescriptor_Impl: IUnknownImpl {
// Required methods
fn GetTag(&self) -> Result<u8>;
fn GetLength(&self) -> Result<u8>;
fn GetCountOfRecords(&self) -> Result<u8>;
fn GetRecordLangId(&self, brecordindex: u8) -> Result<u32>;
fn GetRecordServiceProviderNameW(
&self,
brecordindex: u8,
convmode: DVB_STRCONV_MODE,
) -> Result<BSTR>;
fn GetRecordServiceNameW(
&self,
brecordindex: u8,
convmode: DVB_STRCONV_MODE,
) -> Result<BSTR>;
}
Required Methods§
fn GetTag(&self) -> Result<u8>
fn GetLength(&self) -> Result<u8>
fn GetCountOfRecords(&self) -> Result<u8>
fn GetRecordLangId(&self, brecordindex: u8) -> Result<u32>
fn GetRecordServiceProviderNameW( &self, brecordindex: u8, convmode: DVB_STRCONV_MODE, ) -> Result<BSTR>
fn GetRecordServiceNameW( &self, brecordindex: u8, convmode: DVB_STRCONV_MODE, ) -> Result<BSTR>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.