Enum gltfgen::texture::WrappingMode[][src]

pub enum WrappingMode {
    ClampToEdge,
    MirroredRepeat,
    Repeat,
}

Texture co-ordinate wrapping mode.

Variants

ClampToEdge

Corresponds to GL_CLAMP_TO_EDGE.

MirroredRepeat

Corresponds to GL_MIRRORED_REPEAT.

Repeat

Corresponds to GL_REPEAT.

Trait Implementations

impl Clone for WrappingMode[src]

impl Copy for WrappingMode[src]

impl Debug for WrappingMode[src]

impl Default for WrappingMode[src]

impl<'de> Deserialize<'de> for WrappingMode[src]

impl Eq for WrappingMode[src]

impl Into<Checked<WrappingMode>> for WrappingMode[src]

impl PartialEq<WrappingMode> for WrappingMode[src]

impl StructuralEq for WrappingMode[src]

impl StructuralPartialEq for WrappingMode[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsSlice<T> for T

impl<T> AttributeValue for T where
    T: Clone + PartialEq<T> + Debug + Send + Sync + 'static, 
[src]

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

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

impl<T> Bytes for T[src]

impl<T> CloneBytes for T where
    T: 'static + Clone

impl<T> CopyElem for T where
    T: Any + Copy

impl<T> DebugBytes for T where
    T: 'static + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> DropBytes for T where
    T: 'static, 

impl<T> Elem for T where
    T: Any + DropBytes, 

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<'a, S, I> Get<'a, I> for S where
    I: GetIndex<'a, S>, 

type Output = <I as GetIndex<'a, S>>::Output

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

impl<S, I> Isolate<I> for S where
    I: IsolateIndex<S>, 

type Output = <I as IsolateIndex<S>>::Output

impl<T> PartialEqBytes for T where
    T: 'static + PartialEq<T>, 

impl<T> Pod for T where
    T: 'static + Copy + Send + Sync + Any
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, N> PushArrayToVec<N> for T where
    T: Clone,
    N: Array<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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.