Trait IDvbContentIdentifierDescriptor_Impl
pub trait IDvbContentIdentifierDescriptor_Impl: IUnknownImpl {
// Required methods
fn GetTag(&self) -> Result<u8>;
fn GetLength(&self) -> Result<u8>;
fn GetCountOfRecords(&self) -> Result<u8>;
fn GetRecordCrid(
&self,
brecordindex: u8,
pbtype: *mut u8,
pblocation: *mut u8,
pblength: *mut u8,
ppbbytes: *mut *mut u8,
) -> Result<()>;
}
Required Methods§
fn GetTag(&self) -> Result<u8>
fn GetLength(&self) -> Result<u8>
fn GetCountOfRecords(&self) -> Result<u8>
fn GetRecordCrid( &self, brecordindex: u8, pbtype: *mut u8, pblocation: *mut u8, pblength: *mut u8, ppbbytes: *mut *mut u8, ) -> Result<()>
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.