Enum maia_wasm::render::TextureMagFilter
source · #[repr(u32)]pub enum TextureMagFilter {
Linear = 9_729,
Nearest = 9_728,
}Expand description
Magnification filter.
This enum lists the magnification filters supported by WebGL2.
Variants§
Trait Implementations§
source§impl Clone for TextureMagFilter
impl Clone for TextureMagFilter
source§fn clone(&self) -> TextureMagFilter
fn clone(&self) -> TextureMagFilter
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 TextureMagFilter
impl Debug for TextureMagFilter
source§impl Default for TextureMagFilter
impl Default for TextureMagFilter
source§fn default() -> TextureMagFilter
fn default() -> TextureMagFilter
Returns the “default value” for a type. Read more
source§impl Hash for TextureMagFilter
impl Hash for TextureMagFilter
source§impl PartialEq for TextureMagFilter
impl PartialEq for TextureMagFilter
source§fn eq(&self, other: &TextureMagFilter) -> bool
fn eq(&self, other: &TextureMagFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for TextureMagFilter
impl Eq for TextureMagFilter
impl StructuralPartialEq for TextureMagFilter
Auto Trait Implementations§
impl Freeze for TextureMagFilter
impl RefUnwindSafe for TextureMagFilter
impl Send for TextureMagFilter
impl Sync for TextureMagFilter
impl Unpin for TextureMagFilter
impl UnwindSafe for TextureMagFilter
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