pub enum TextureAddressMode {
Wrap,
Clamp,
Mirror,
Border,
}Variants§
Trait Implementations§
Source§impl Clone for TextureAddressMode
impl Clone for TextureAddressMode
Source§fn clone(&self) -> TextureAddressMode
fn clone(&self) -> TextureAddressMode
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 TextureAddressMode
impl Debug for TextureAddressMode
Source§impl PartialEq for TextureAddressMode
impl PartialEq for TextureAddressMode
Source§fn eq(&self, other: &TextureAddressMode) -> bool
fn eq(&self, other: &TextureAddressMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TextureAddressMode
impl Eq for TextureAddressMode
impl StructuralPartialEq for TextureAddressMode
Auto Trait Implementations§
impl Freeze for TextureAddressMode
impl RefUnwindSafe for TextureAddressMode
impl Send for TextureAddressMode
impl Sync for TextureAddressMode
impl Unpin for TextureAddressMode
impl UnsafeUnpin for TextureAddressMode
impl UnwindSafe for TextureAddressMode
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