Trait IDvbTeletextDescriptor_Impl
pub trait IDvbTeletextDescriptor_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 GetRecordTeletextType(&self, brecordindex: u8) -> Result<u8>;
fn GetRecordMagazineNumber(&self, brecordindex: u8) -> Result<u8>;
fn GetRecordPageNumber(&self, brecordindex: u8) -> Result<u8>;
}
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 GetRecordTeletextType(&self, brecordindex: u8) -> Result<u8>
fn GetRecordMagazineNumber(&self, brecordindex: u8) -> Result<u8>
fn GetRecordPageNumber(&self, brecordindex: u8) -> Result<u8>
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.