#[repr(u32)]pub enum ImageInterpolation {
InterpolateNearest = 0,
InterpolateBilinear = 1,
InterpolateCubic = 2,
InterpolateTrilinear = 3,
}
Variants§
Trait Implementations§
Source§impl Clone for ImageInterpolation
impl Clone for ImageInterpolation
Source§fn clone(&self) -> ImageInterpolation
fn clone(&self) -> ImageInterpolation
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 ImageInterpolation
impl Debug for ImageInterpolation
Source§impl Hash for ImageInterpolation
impl Hash for ImageInterpolation
Source§impl PartialEq for ImageInterpolation
impl PartialEq for ImageInterpolation
impl Copy for ImageInterpolation
impl Eq for ImageInterpolation
impl StructuralPartialEq for ImageInterpolation
Auto Trait Implementations§
impl Freeze for ImageInterpolation
impl RefUnwindSafe for ImageInterpolation
impl Send for ImageInterpolation
impl Sync for ImageInterpolation
impl Unpin for ImageInterpolation
impl UnwindSafe for ImageInterpolation
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