Enum VipsKernel
#[repr(u32)]pub enum VipsKernel {
VIPS_KERNEL_NEAREST = 0,
VIPS_KERNEL_LINEAR = 1,
VIPS_KERNEL_CUBIC = 2,
VIPS_KERNEL_MITCHELL = 3,
VIPS_KERNEL_LANCZOS2 = 4,
VIPS_KERNEL_LANCZOS3 = 5,
VIPS_KERNEL_MKS2013 = 6,
VIPS_KERNEL_MKS2021 = 7,
VIPS_KERNEL_LAST = 8,
}Variants§
VIPS_KERNEL_NEAREST = 0
VIPS_KERNEL_LINEAR = 1
VIPS_KERNEL_CUBIC = 2
VIPS_KERNEL_MITCHELL = 3
VIPS_KERNEL_LANCZOS2 = 4
VIPS_KERNEL_LANCZOS3 = 5
VIPS_KERNEL_MKS2013 = 6
VIPS_KERNEL_MKS2021 = 7
VIPS_KERNEL_LAST = 8
Trait Implementations§
§impl Clone for VipsKernel
impl Clone for VipsKernel
§fn clone(&self) -> VipsKernel
fn clone(&self) -> VipsKernel
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 more§impl Debug for VipsKernel
impl Debug for VipsKernel
§impl Hash for VipsKernel
impl Hash for VipsKernel
§impl PartialEq for VipsKernel
impl PartialEq for VipsKernel
impl Copy for VipsKernel
impl Eq for VipsKernel
impl StructuralPartialEq for VipsKernel
Auto Trait Implementations§
impl Freeze for VipsKernel
impl RefUnwindSafe for VipsKernel
impl Send for VipsKernel
impl Sync for VipsKernel
impl Unpin for VipsKernel
impl UnwindSafe for VipsKernel
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