Enum gltfgen::texture::MinFilter[][src]

pub enum MinFilter {
    Nearest,
    Linear,
    NearestMipmapNearest,
    LinearMipmapNearest,
    NearestMipmapLinear,
    LinearMipmapLinear,
    None,
}

Minification filter.

Variants

Nearest

Corresponds to GL_NEAREST.

Linear

Corresponds to GL_LINEAR.

NearestMipmapNearest

Corresponds to GL_NEAREST_MIPMAP_NEAREST.

LinearMipmapNearest

Corresponds to GL_LINEAR_MIPMAP_NEAREST.

NearestMipmapLinear

Corresponds to GL_NEAREST_MIPMAP_LINEAR.

LinearMipmapLinear

Corresponds to GL_LINEAR_MIPMAP_LINEAR.

None

Trait Implementations

impl Clone for MinFilter[src]

impl Copy for MinFilter[src]

impl Debug for MinFilter[src]

impl Default for MinFilter[src]

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

impl Eq for MinFilter[src]

impl Into<Option<Checked<MinFilter>>> for MinFilter[src]

impl PartialEq<MinFilter> for MinFilter[src]

impl StructuralEq for MinFilter[src]

impl StructuralPartialEq for MinFilter[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.