#[repr(C)]pub enum SamplerAddress {
ClampToZero = 0,
ClampToEdge = 1,
ClampToBorder = 2,
Repeat = 3,
MirroredRepeat = 4,
}Variants§
Trait Implementations§
Source§impl Clone for SamplerAddress
impl Clone for SamplerAddress
Source§fn clone(&self) -> SamplerAddress
fn clone(&self) -> SamplerAddress
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 moreimpl Copy for SamplerAddress
Source§impl Debug for SamplerAddress
impl Debug for SamplerAddress
impl Eq for SamplerAddress
Source§impl Hash for SamplerAddress
impl Hash for SamplerAddress
Source§impl PartialEq for SamplerAddress
impl PartialEq for SamplerAddress
Source§fn eq(&self, other: &SamplerAddress) -> bool
fn eq(&self, other: &SamplerAddress) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SamplerAddress
Auto Trait Implementations§
impl Freeze for SamplerAddress
impl RefUnwindSafe for SamplerAddress
impl Send for SamplerAddress
impl Sync for SamplerAddress
impl Unpin for SamplerAddress
impl UnsafeUnpin for SamplerAddress
impl UnwindSafe for SamplerAddress
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