[][src]Struct image2::filter::Join

pub struct Join<'a, A: 'a + Filter, B: Filter, F: Fn(f64, f64) -> f64> { /* fields omitted */ }

Executes a then b and passes the results to f

Trait Implementations

impl<'a, A: Filter, B: Filter, F: Sync + Fn(f64, f64) -> f64> Filter for Join<'a, A, B, F>[src]

fn eval_partial<T: Type, C: Color, U: Type, D: Color, I: Image<T, C>, J: Image<U, D>>(
    &self,
    start_x: usize,
    start_y: usize,
    width: usize,
    height: usize,
    output: &mut I,
    input: &[&J]
)
[src]

Evaluate a filter on part of an image

fn eval<T: Send + Type, C: Color, U: Type, D: Color, I: Sync + Send + Image<T, C>, J: Sync + Image<U, D>>(
    &self,
    output: &mut I,
    input: &[&J]
)
[src]

Evaluate filter in parallel

fn eval_in_place<T: Send + Type, C: Color, I: Sync + Send + Image<T, C>>(
    &self,
    image: &mut I
)
[src]

Evaluate filter in parallel in place

fn join<A: Filter, F: Fn(f64, f64) -> f64>(
    &self,
    other: A,
    f: F
) -> Join<Self, A, F>
[src]

fn and_then<F: Fn(f64) -> f64>(&self, f: F) -> AndThen<Self, F>[src]

Auto Trait Implementations

impl<'a, A, B, F> Send for Join<'a, A, B, F> where
    B: Send,
    F: Send

impl<'a, A, B, F> Unpin for Join<'a, A, B, F> where
    B: Unpin,
    F: Unpin

impl<'a, A, B, F> Sync for Join<'a, A, B, F> where
    F: Sync

impl<'a, A, B, F> UnwindSafe for Join<'a, A, B, F> where
    A: RefUnwindSafe,
    B: UnwindSafe,
    F: UnwindSafe

impl<'a, A, B, F> RefUnwindSafe for Join<'a, A, B, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    F: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more