#[repr(u32)]pub enum v4l2_av1_interpolation_filter {
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP = 0,
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1,
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2,
V4L2_AV1_INTERPOLATION_FILTER_BILINEAR = 3,
V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE = 4,
}
Variants§
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP = 0
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SMOOTH = 1
V4L2_AV1_INTERPOLATION_FILTER_EIGHTTAP_SHARP = 2
V4L2_AV1_INTERPOLATION_FILTER_BILINEAR = 3
V4L2_AV1_INTERPOLATION_FILTER_SWITCHABLE = 4
Trait Implementations§
Source§impl Clone for v4l2_av1_interpolation_filter
impl Clone for v4l2_av1_interpolation_filter
Source§fn clone(&self) -> v4l2_av1_interpolation_filter
fn clone(&self) -> v4l2_av1_interpolation_filter
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 moreSource§impl Hash for v4l2_av1_interpolation_filter
impl Hash for v4l2_av1_interpolation_filter
Source§impl PartialEq for v4l2_av1_interpolation_filter
impl PartialEq for v4l2_av1_interpolation_filter
Source§fn eq(&self, other: &v4l2_av1_interpolation_filter) -> bool
fn eq(&self, other: &v4l2_av1_interpolation_filter) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for v4l2_av1_interpolation_filter
impl Eq for v4l2_av1_interpolation_filter
impl StructuralPartialEq for v4l2_av1_interpolation_filter
Auto Trait Implementations§
impl Freeze for v4l2_av1_interpolation_filter
impl RefUnwindSafe for v4l2_av1_interpolation_filter
impl Send for v4l2_av1_interpolation_filter
impl Sync for v4l2_av1_interpolation_filter
impl Unpin for v4l2_av1_interpolation_filter
impl UnwindSafe for v4l2_av1_interpolation_filter
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