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