Trait IAMTimecodeGenerator_Impl
pub trait IAMTimecodeGenerator_Impl: IUnknownImpl {
// Required methods
fn GetTCGMode(&self, param: i32) -> Result<i32>;
fn SetTCGMode(&self, param: i32, value: i32) -> Result<()>;
fn SetVITCLine(&self, line: i32) -> Result<()>;
fn VITCLine(&self) -> Result<i32>;
fn SetTimecode(&self, ptimecodesample: *const TIMECODE_SAMPLE) -> Result<()>;
fn GetTimecode(&self, ptimecodesample: *mut TIMECODE_SAMPLE) -> Result<()>;
}
Required Methods§
fn GetTCGMode(&self, param: i32) -> Result<i32>
fn SetTCGMode(&self, param: i32, value: i32) -> Result<()>
fn SetVITCLine(&self, line: i32) -> Result<()>
fn VITCLine(&self) -> Result<i32>
fn SetTimecode(&self, ptimecodesample: *const TIMECODE_SAMPLE) -> Result<()>
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.