#[repr(u32)]pub enum PixelInterpolateMethod {
Undefined = 0,
Average = 1,
Average9 = 2,
Average16 = 3,
Background = 4,
Bilinear = 5,
Blend = 6,
Catrom = 7,
Integer = 8,
Mesh = 9,
Nearest = 10,
Spline = 11,
}
Variants§
Undefined = 0
Average = 1
Average9 = 2
Average16 = 3
Background = 4
Bilinear = 5
Blend = 6
Catrom = 7
Integer = 8
Mesh = 9
Nearest = 10
Spline = 11
Trait Implementations§
Source§impl Clone for PixelInterpolateMethod
impl Clone for PixelInterpolateMethod
Source§fn clone(&self) -> PixelInterpolateMethod
fn clone(&self) -> PixelInterpolateMethod
Returns a duplicate 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 PixelInterpolateMethod
impl Debug for PixelInterpolateMethod
Source§impl Hash for PixelInterpolateMethod
impl Hash for PixelInterpolateMethod
Source§impl PartialEq for PixelInterpolateMethod
impl PartialEq for PixelInterpolateMethod
impl Copy for PixelInterpolateMethod
impl Eq for PixelInterpolateMethod
impl StructuralPartialEq for PixelInterpolateMethod
Auto Trait Implementations§
impl Freeze for PixelInterpolateMethod
impl RefUnwindSafe for PixelInterpolateMethod
impl Send for PixelInterpolateMethod
impl Sync for PixelInterpolateMethod
impl Unpin for PixelInterpolateMethod
impl UnwindSafe for PixelInterpolateMethod
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