pub enum InterpolationFilter {
Unknown,
Eighttap,
EighttapSmooth,
EighttapSharp,
Bilinear,
Switchable,
}
Expand description
Type of the interpolation filter.
Variants§
Unknown
Unknown.
Eighttap
EIGHTTAP.
EighttapSmooth
EIGHTTAP_SMOOTH.
EighttapSharp
EIGHTTAP_SHARP.
Bilinear
BILINEAR.
Switchable
SWITCHABLE.
Trait Implementations§
Source§impl Clone for InterpolationFilter
impl Clone for InterpolationFilter
Source§fn clone(&self) -> InterpolationFilter
fn clone(&self) -> InterpolationFilter
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 Debug for InterpolationFilter
impl Debug for InterpolationFilter
Source§impl Ord for InterpolationFilter
impl Ord for InterpolationFilter
Source§fn cmp(&self, other: &InterpolationFilter) -> Ordering
fn cmp(&self, other: &InterpolationFilter) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for InterpolationFilter
impl PartialEq for InterpolationFilter
Source§impl PartialOrd for InterpolationFilter
impl PartialOrd for InterpolationFilter
impl Copy for InterpolationFilter
impl Eq for InterpolationFilter
impl StructuralPartialEq for InterpolationFilter
Auto Trait Implementations§
impl Freeze for InterpolationFilter
impl RefUnwindSafe for InterpolationFilter
impl Send for InterpolationFilter
impl Sync for InterpolationFilter
impl Unpin for InterpolationFilter
impl UnwindSafe for InterpolationFilter
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