[][src]Enum vulkayes_core::descriptor::sampler::params::AddressModeClamp

#[repr(i32)]pub enum AddressModeClamp {
    CLAMP_TO_EDGE,
    CLAMP_TO_BORDER,
}

Sampler address mode containing only clamp modes.

Variants

CLAMP_TO_EDGE
CLAMP_TO_BORDER

Trait Implementations

impl Clone for AddressModeClamp[src]

impl Copy for AddressModeClamp[src]

impl Debug for AddressModeClamp[src]

impl Eq for AddressModeClamp[src]

impl Hash for AddressModeClamp[src]

impl Into<SamplerAddressMode> for AddressModeClamp[src]

impl Ord for AddressModeClamp[src]

impl PartialEq<AddressModeClamp> for AddressModeClamp[src]

impl PartialOrd<AddressModeClamp> for AddressModeClamp[src]

impl StructuralEq for AddressModeClamp[src]

impl StructuralPartialEq for AddressModeClamp[src]

impl TryFrom<SamplerAddressMode> for AddressModeClamp[src]

type Error = String

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.