pub enum ImageSamplingMode {
Linear,
Nearest,
LinearMipmapNearest,
LinearMipmapLinear,
CubicMitchell,
CubicCatmullRom,
Anisotropic,
}Variants§
Trait Implementations§
Source§impl Clone for ImageSamplingMode
impl Clone for ImageSamplingMode
Source§fn clone(&self) -> ImageSamplingMode
fn clone(&self) -> ImageSamplingMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageSamplingMode
Source§impl Debug for ImageSamplingMode
impl Debug for ImageSamplingMode
impl Eq for ImageSamplingMode
Source§impl PartialEq for ImageSamplingMode
impl PartialEq for ImageSamplingMode
impl StructuralPartialEq for ImageSamplingMode
Auto Trait Implementations§
impl Freeze for ImageSamplingMode
impl RefUnwindSafe for ImageSamplingMode
impl Send for ImageSamplingMode
impl Sync for ImageSamplingMode
impl Unpin for ImageSamplingMode
impl UnsafeUnpin for ImageSamplingMode
impl UnwindSafe for ImageSamplingMode
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