#[repr(C)]pub struct _VAProcFilterParameterBuffer {
pub type_: VAProcFilterType,
pub value: f32,
pub va_reserved: [u32; 4],
}Expand description
\brief Default filter parametrization.
Unless there is a filter-specific parameter buffer, #VAProcFilterParameterBuffer is the default type to use.
Fields§
§type_: VAProcFilterType\brief Filter type.
value: f32\brief Value.
va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAProcFilterParameterBuffer
impl Clone for _VAProcFilterParameterBuffer
Source§fn clone(&self) -> _VAProcFilterParameterBuffer
fn clone(&self) -> _VAProcFilterParameterBuffer
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 _VAProcFilterParameterBuffer
Source§impl Debug for _VAProcFilterParameterBuffer
impl Debug for _VAProcFilterParameterBuffer
Source§impl PartialEq for _VAProcFilterParameterBuffer
impl PartialEq for _VAProcFilterParameterBuffer
Source§fn eq(&self, other: &_VAProcFilterParameterBuffer) -> bool
fn eq(&self, other: &_VAProcFilterParameterBuffer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAProcFilterParameterBuffer
Auto Trait Implementations§
impl Freeze for _VAProcFilterParameterBuffer
impl RefUnwindSafe for _VAProcFilterParameterBuffer
impl Send for _VAProcFilterParameterBuffer
impl Sync for _VAProcFilterParameterBuffer
impl Unpin for _VAProcFilterParameterBuffer
impl UnsafeUnpin for _VAProcFilterParameterBuffer
impl UnwindSafe for _VAProcFilterParameterBuffer
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