windows::Win32::Media::DirectShow::Tv

Trait IDvbContentDescriptor_Impl

pub trait IDvbContentDescriptor_Impl: IUnknownImpl {
    // Required methods
    fn GetTag(&self) -> Result<u8>;
    fn GetLength(&self) -> Result<u8>;
    fn GetCountOfRecords(&self) -> Result<u8>;
    fn GetRecordContentNibbles(
        &self,
        brecordindex: u8,
        pbvallevel1: *mut u8,
        pbvallevel2: *mut u8,
    ) -> Result<()>;
    fn GetRecordUserNibbles(
        &self,
        brecordindex: u8,
        pbval1: *mut u8,
        pbval2: *mut u8,
    ) -> Result<()>;
}

Required Methods§

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

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

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

fn GetRecordContentNibbles( &self, brecordindex: u8, pbvallevel1: *mut u8, pbvallevel2: *mut u8, ) -> Result<()>

fn GetRecordUserNibbles( &self, brecordindex: u8, pbval1: *mut u8, pbval2: *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.

Implementors§