#[repr(C)]pub union mfxFrameData__bindgen_ty_2 {
pub Pitch: mfxU16,
pub PitchLow: mfxU16,
}Fields§
§Pitch: mfxU16§PitchLow: mfxU16< Low 16 bits of the Distance in bytes between the start of two consecutive rows in a frame. App should combine with the high 16 bits which is stored in PitchHigh to get the final Pitch. finalPitch = (PitchHigh << 16) + PitchLow.
Trait Implementations§
Source§impl Clone for mfxFrameData__bindgen_ty_2
impl Clone for mfxFrameData__bindgen_ty_2
Source§fn clone(&self) -> mfxFrameData__bindgen_ty_2
fn clone(&self) -> mfxFrameData__bindgen_ty_2
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for mfxFrameData__bindgen_ty_2
Auto Trait Implementations§
impl Freeze for mfxFrameData__bindgen_ty_2
impl RefUnwindSafe for mfxFrameData__bindgen_ty_2
impl Send for mfxFrameData__bindgen_ty_2
impl Sync for mfxFrameData__bindgen_ty_2
impl Unpin for mfxFrameData__bindgen_ty_2
impl UnsafeUnpin for mfxFrameData__bindgen_ty_2
impl UnwindSafe for mfxFrameData__bindgen_ty_2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more