Struct AVICOMPRESSOPTIONS
#[repr(C)]pub struct AVICOMPRESSOPTIONS {
pub fccType: u32,
pub fccHandler: u32,
pub dwKeyFrameEvery: u32,
pub dwQuality: u32,
pub dwBytesPerSecond: u32,
pub dwFlags: u32,
pub lpFormat: *mut c_void,
pub cbFormat: u32,
pub lpParms: *mut c_void,
pub cbParms: u32,
pub dwInterleaveEvery: u32,
}
Fields§
§fccType: u32
§fccHandler: u32
§dwKeyFrameEvery: u32
§dwQuality: u32
§dwBytesPerSecond: u32
§dwFlags: u32
§lpFormat: *mut c_void
§cbFormat: u32
§lpParms: *mut c_void
§cbParms: u32
§dwInterleaveEvery: u32
Trait Implementations§
§impl Clone for AVICOMPRESSOPTIONS
impl Clone for AVICOMPRESSOPTIONS
§fn clone(&self) -> AVICOMPRESSOPTIONS
fn clone(&self) -> AVICOMPRESSOPTIONS
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for AVICOMPRESSOPTIONS
impl Debug for AVICOMPRESSOPTIONS
§impl Default for AVICOMPRESSOPTIONS
impl Default for AVICOMPRESSOPTIONS
§impl PartialEq for AVICOMPRESSOPTIONS
impl PartialEq for AVICOMPRESSOPTIONS
impl Copy for AVICOMPRESSOPTIONS
impl StructuralPartialEq for AVICOMPRESSOPTIONS
Auto Trait Implementations§
impl Freeze for AVICOMPRESSOPTIONS
impl RefUnwindSafe for AVICOMPRESSOPTIONS
impl !Send for AVICOMPRESSOPTIONS
impl !Sync for AVICOMPRESSOPTIONS
impl Unpin for AVICOMPRESSOPTIONS
impl UnwindSafe for AVICOMPRESSOPTIONS
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