windows::Win32::Media::DirectShow

Trait IAMTimecodeReader_Impl

pub trait IAMTimecodeReader_Impl: IUnknownImpl {
    // Required methods
    fn GetTCRMode(&self, param: i32) -> Result<i32>;
    fn SetTCRMode(&self, param: i32, value: i32) -> Result<()>;
    fn SetVITCLine(&self, line: i32) -> Result<()>;
    fn VITCLine(&self) -> Result<i32>;
    fn GetTimecode(&self, ptimecodesample: *mut TIMECODE_SAMPLE) -> Result<()>;
}

Required Methods§

fn GetTCRMode(&self, param: i32) -> Result<i32>

fn SetTCRMode(&self, param: i32, value: i32) -> Result<()>

fn SetVITCLine(&self, line: i32) -> Result<()>

fn VITCLine(&self) -> Result<i32>

fn GetTimecode(&self, ptimecodesample: *mut TIMECODE_SAMPLE) -> 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§