Enum smaa::SmaaMode[][src]

#[non_exhaustive]
pub enum SmaaMode {
    Disabled,
    Smaa1X,
}

Anti-aliasing mode. Higher values produce nicer results but run slower.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Disabled

Do not perform antialiasing.

Smaa1X

Use SMAA 1x.

Trait Implementations

impl Clone for SmaaMode[src]

impl Copy for SmaaMode[src]

impl Debug for SmaaMode[src]

impl Eq for SmaaMode[src]

impl Hash for SmaaMode[src]

impl PartialEq<SmaaMode> for SmaaMode[src]

impl StructuralEq for SmaaMode[src]

impl StructuralPartialEq for SmaaMode[src]

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> CallHasher for T where
    T: Hash

impl<T> Downcast<T> for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.

impl<T> Upcast<T> for T