pub enum SamplerFilter {
None,
Nearest,
Linear,
NearestMipmapNearest,
LinearMipmapNearest,
NearestMipmapLinear,
LinearMipmapLinear,
}Expand description
(Undocumented?) Enumerated type fx_sampler_filter_common from COLLADA spec.
Variants§
None
Nearest
Linear
NearestMipmapNearest
LinearMipmapNearest
NearestMipmapLinear
LinearMipmapLinear
Implementations§
Trait Implementations§
Source§impl Clone for SamplerFilter
impl Clone for SamplerFilter
Source§fn clone(&self) -> SamplerFilter
fn clone(&self) -> SamplerFilter
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 SamplerFilter
Source§impl Debug for SamplerFilter
impl Debug for SamplerFilter
Source§impl Default for SamplerFilter
impl Default for SamplerFilter
Source§impl Display for SamplerFilter
impl Display for SamplerFilter
impl Eq for SamplerFilter
Source§impl FromStr for SamplerFilter
impl FromStr for SamplerFilter
Source§impl PartialEq for SamplerFilter
impl PartialEq for SamplerFilter
Source§fn eq(&self, other: &SamplerFilter) -> bool
fn eq(&self, other: &SamplerFilter) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SamplerFilter
Auto Trait Implementations§
impl Freeze for SamplerFilter
impl RefUnwindSafe for SamplerFilter
impl Send for SamplerFilter
impl Sync for SamplerFilter
impl Unpin for SamplerFilter
impl UnsafeUnpin for SamplerFilter
impl UnwindSafe for SamplerFilter
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