pub trait gdi_mf_IMFVideoDisplayControl: mf_IMFVideoDisplayControl {
// Provided method
fn GetCurrentImage(&self) -> HrResult<(BITMAPINFOHEADER, Vec<u8>, i64)> { ... }
}
Available on crate features
gdi
and mf
and kernel
only.Expand description
This trait is enabled with gdi
and mf
features, and provides methods
for IMFVideoDisplayControl
.
Prefer importing this trait through the prelude:
use winsafe::prelude::*;
Provided Methods§
Sourcefn GetCurrentImage(&self) -> HrResult<(BITMAPINFOHEADER, Vec<u8>, i64)>
fn GetCurrentImage(&self) -> HrResult<(BITMAPINFOHEADER, Vec<u8>, i64)>
GetCurrentImage
method.
Returns bitmap description, DIB bytes and time stamp.
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.