#[repr(i32)]pub enum TextureAddressMode {
Wrap = 1,
Mirror = 2,
Clamp = 3,
Border = 4,
MirrorOnce = 5,
}
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 · 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
impl Copy 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 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