Enum image::FilterType [] [src]

pub enum FilterType {
    Nearest,
    Triangle,
    CatmullRom,
    Gaussian,
    Lanczos3,
}

Available Sampling Filters

Variants

Nearest

Nearest Neighbor

Triangle

Linear Filter

CatmullRom

Cubic Filter

Gaussian

Gaussian Filter

Lanczos3

Lanczos with window 3

Trait Implementations

impl Copy for FilterType
[src]

impl Clone for FilterType
[src]

fn clone(&self) -> FilterType

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more