#[repr(C)]pub struct _VAProcFilterValueRange {
pub min_value: f32,
pub max_value: f32,
pub default_value: f32,
pub step: f32,
pub va_reserved: [u32; 4],
}Expand description
\brief Specification of values supported by the filter.
Fields§
§min_value: f32\brief Minimum value supported, inclusive.
max_value: f32\brief Maximum value supported, inclusive.
default_value: f32\brief Default value.
step: f32\brief Step value that alters the filter behaviour in a sensible way.
va_reserved: [u32; 4]\brief Reserved bytes for future use, must be zero
Trait Implementations§
Source§impl Clone for _VAProcFilterValueRange
impl Clone for _VAProcFilterValueRange
Source§fn clone(&self) -> _VAProcFilterValueRange
fn clone(&self) -> _VAProcFilterValueRange
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 _VAProcFilterValueRange
Source§impl Debug for _VAProcFilterValueRange
impl Debug for _VAProcFilterValueRange
Source§impl Default for _VAProcFilterValueRange
impl Default for _VAProcFilterValueRange
Source§fn default() -> _VAProcFilterValueRange
fn default() -> _VAProcFilterValueRange
Returns the “default value” for a type. Read more
Source§impl PartialEq for _VAProcFilterValueRange
impl PartialEq for _VAProcFilterValueRange
Source§fn eq(&self, other: &_VAProcFilterValueRange) -> bool
fn eq(&self, other: &_VAProcFilterValueRange) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for _VAProcFilterValueRange
Auto Trait Implementations§
impl Freeze for _VAProcFilterValueRange
impl RefUnwindSafe for _VAProcFilterValueRange
impl Send for _VAProcFilterValueRange
impl Sync for _VAProcFilterValueRange
impl Unpin for _VAProcFilterValueRange
impl UnsafeUnpin for _VAProcFilterValueRange
impl UnwindSafe for _VAProcFilterValueRange
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