#[repr(u32)]pub enum AtlasFilter {
Unknown = 0,
Nearest = 1,
Linear = 2,
Mipmap = 3,
MipmapNereastNearest = 4,
MipmapLinearNearest = 5,
MipmapNearestLinear = 6,
MipmapLinearLinear = 7,
}Variants§
Unknown = 0
Nearest = 1
Linear = 2
Mipmap = 3
MipmapNereastNearest = 4
MipmapLinearNearest = 5
MipmapNearestLinear = 6
MipmapLinearLinear = 7
Trait Implementations§
Source§impl Clone for AtlasFilter
impl Clone for AtlasFilter
Source§fn clone(&self) -> AtlasFilter
fn clone(&self) -> AtlasFilter
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 AtlasFilter
Source§impl Debug for AtlasFilter
impl Debug for AtlasFilter
impl Eq for AtlasFilter
Source§impl From<u32> for AtlasFilter
impl From<u32> for AtlasFilter
Source§fn from(e: spAtlasFilter) -> Self
fn from(e: spAtlasFilter) -> Self
Converts to this type from the input type.
Source§impl Hash for AtlasFilter
impl Hash for AtlasFilter
Source§impl Ord for AtlasFilter
impl Ord for AtlasFilter
Source§fn cmp(&self, other: &AtlasFilter) -> Ordering
fn cmp(&self, other: &AtlasFilter) -> Ordering
1.21.0 (const: unstable) · 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 AtlasFilter
impl PartialEq for AtlasFilter
Source§fn eq(&self, other: &AtlasFilter) -> bool
fn eq(&self, other: &AtlasFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AtlasFilter
impl PartialOrd for AtlasFilter
impl StructuralPartialEq for AtlasFilter
Auto Trait Implementations§
impl Freeze for AtlasFilter
impl RefUnwindSafe for AtlasFilter
impl Send for AtlasFilter
impl Sync for AtlasFilter
impl Unpin for AtlasFilter
impl UnsafeUnpin for AtlasFilter
impl UnwindSafe for AtlasFilter
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