pub struct SamplerAddressMode(_);Expand description
Implementations
sourceimpl SamplerAddressMode
impl SamplerAddressMode
pub const REPEAT: SamplerAddressMode = Self(0)
pub const MIRRORED_REPEAT: SamplerAddressMode = Self(1)
pub const CLAMP_TO_EDGE: SamplerAddressMode = Self(2)
pub const CLAMP_TO_BORDER: SamplerAddressMode = Self(3)
sourceimpl SamplerAddressMode
impl SamplerAddressMode
Generated from ‘VK_KHR_sampler_mirror_clamp_to_edge’
sourcepub const MIRROR_CLAMP_TO_EDGE: SamplerAddressMode = Self(4)
pub const MIRROR_CLAMP_TO_EDGE: SamplerAddressMode = Self(4)
Note that this defines what was previously a core enum, and so uses the ‘value’ attribute rather than ‘offset’, and does not have a suffix. This is a special case, and should not be repeated
pub const MIRROR_CLAMP_TO_EDGE_KHR: SamplerAddressMode = Self::MIRROR_CLAMP_TO_EDGE
👎Deprecated: Alias introduced for consistency with extension suffixing rules
Trait Implementations
sourceimpl Clone for SamplerAddressMode
impl Clone for SamplerAddressMode
sourcefn clone(&self) -> SamplerAddressMode
fn clone(&self) -> SamplerAddressMode
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SamplerAddressMode
impl Debug for SamplerAddressMode
sourceimpl Default for SamplerAddressMode
impl Default for SamplerAddressMode
sourcefn default() -> SamplerAddressMode
fn default() -> SamplerAddressMode
Returns the “default value” for a type. Read more
sourceimpl Hash for SamplerAddressMode
impl Hash for SamplerAddressMode
sourceimpl Ord for SamplerAddressMode
impl Ord for SamplerAddressMode
sourcefn cmp(&self, other: &SamplerAddressMode) -> Ordering
fn cmp(&self, other: &SamplerAddressMode) -> Ordering
1.21.0 · sourceconst fn max(self, other: Self) -> Selfwhere
Self: Sized,
const fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Selfwhere
Self: Sized,
const fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<SamplerAddressMode> for SamplerAddressMode
impl PartialEq<SamplerAddressMode> for SamplerAddressMode
sourcefn eq(&self, other: &SamplerAddressMode) -> bool
fn eq(&self, other: &SamplerAddressMode) -> bool
sourceimpl PartialOrd<SamplerAddressMode> for SamplerAddressMode
impl PartialOrd<SamplerAddressMode> for SamplerAddressMode
sourcefn partial_cmp(&self, other: &SamplerAddressMode) -> Option<Ordering>
fn partial_cmp(&self, other: &SamplerAddressMode) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for SamplerAddressMode
impl Eq for SamplerAddressMode
impl StructuralEq for SamplerAddressMode
impl StructuralPartialEq for SamplerAddressMode
Auto Trait Implementations
impl RefUnwindSafe for SamplerAddressMode
impl Send for SamplerAddressMode
impl Sync for SamplerAddressMode
impl Unpin for SamplerAddressMode
impl UnwindSafe for SamplerAddressMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more