[][src]Struct pixelmatch::Options

pub struct Options {
    pub threshold: f64,
    pub include_aa: bool,
    pub alpha: f64,
    pub aa_color: [u8; 4],
    pub diff_color: [u8; 4],
    pub diff_color_alt: Option<[u8; 4]>,
    pub diff_mask: bool,
}

Fields

threshold: f64

matching threshold (0 to 1); smaller is more sensitive

include_aa: bool

whether to skip anti-aliasing detection

alpha: f64

opacity of original image in diff output

aa_color: [u8; 4]

color of anti-aliased pixels in diff output

diff_color: [u8; 4]

color of different pixels in diff output

diff_color_alt: Option<[u8; 4]>

whether to detect dark on light differences between img1 and img2 and set an alternative color to differentiate between the two

diff_mask: bool

draw the diff over a transparent background (a mask)

Trait Implementations

impl Default for Options[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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.