[][src]Enum glium::draw_parameters::Smooth

pub enum Smooth {
    Fastest,
    Nicest,
    DontCare,
}

Specifies a hint for the smoothing.

Note that this is just a hint and the driver may disregard it.

Variants

Fastest

The most efficient option should be chosen.

Nicest

The most correct, or highest quality, option should be chosen.

DontCare

No preference.

Trait Implementations

impl Clone for Smooth[src]

impl Copy for Smooth[src]

impl Debug for Smooth[src]

impl Eq for Smooth[src]

impl PartialEq<Smooth> for Smooth[src]

impl StructuralEq for Smooth[src]

impl StructuralPartialEq for Smooth[src]

Auto Trait Implementations

impl RefUnwindSafe for Smooth

impl Send for Smooth

impl Sync for Smooth

impl Unpin for Smooth

impl UnwindSafe for Smooth

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> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

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.