Trait IDVEnc_Impl
pub trait IDVEnc_Impl: IUnknownImpl {
// Required methods
fn get_IFormatResolution(
&self,
videoformat: *mut i32,
dvformat: *mut i32,
resolution: *mut i32,
fdvinfo: u8,
sdvinfo: *mut DVINFO,
) -> Result<()>;
fn put_IFormatResolution(
&self,
videoformat: i32,
dvformat: i32,
resolution: i32,
fdvinfo: u8,
sdvinfo: *const DVINFO,
) -> Result<()>;
}
Required Methods§
fn get_IFormatResolution( &self, videoformat: *mut i32, dvformat: *mut i32, resolution: *mut i32, fdvinfo: u8, sdvinfo: *mut DVINFO, ) -> Result<()>
fn put_IFormatResolution( &self, videoformat: i32, dvformat: i32, resolution: i32, fdvinfo: u8, sdvinfo: *const DVINFO, ) -> 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.