#[repr(u32)]pub enum MaterialTextureFilterMode {
Nearest = 0,
Linear = 1,
}Expand description
Mirrors the corresponding Model I/O material texture filter mode enumeration.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for MaterialTextureFilterMode
impl Clone for MaterialTextureFilterMode
Source§fn clone(&self) -> MaterialTextureFilterMode
fn clone(&self) -> MaterialTextureFilterMode
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 moreSource§impl Debug for MaterialTextureFilterMode
impl Debug for MaterialTextureFilterMode
Source§impl PartialEq for MaterialTextureFilterMode
impl PartialEq for MaterialTextureFilterMode
Source§fn eq(&self, other: &MaterialTextureFilterMode) -> bool
fn eq(&self, other: &MaterialTextureFilterMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MaterialTextureFilterMode
impl Eq for MaterialTextureFilterMode
impl StructuralPartialEq for MaterialTextureFilterMode
Auto Trait Implementations§
impl Freeze for MaterialTextureFilterMode
impl RefUnwindSafe for MaterialTextureFilterMode
impl Send for MaterialTextureFilterMode
impl Sync for MaterialTextureFilterMode
impl Unpin for MaterialTextureFilterMode
impl UnsafeUnpin for MaterialTextureFilterMode
impl UnwindSafe for MaterialTextureFilterMode
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