[][src]Struct julia_set::transform::ImageAndTransform

pub struct ImageAndTransform<Pix, F> where
    Pix: Pixel
{ /* fields omitted */ }

Source image together with one or more PixelTransforms. Transforms are applied lazily, once Self::transform() is called.

Implementations

impl<Pix, F> ImageAndTransform<Pix, F> where
    Pix: Pixel + Copy + 'static,
    F: PixelTransform<Pix>,
    <F::Output as Pixel>::Subpixel: 'static, 
[src]

pub fn transform(
    &self
) -> ImageBuffer<F::Output, Vec<<F::Output as Pixel>::Subpixel>>
[src]

Applies transforms accumulated in this object to the source image.

Trait Implementations

impl<Pix, F, G> ApplyTransform<Pix, G> for ImageAndTransform<Pix, F> where
    Pix: Pixel,
    F: PixelTransform<Pix>,
    G: PixelTransform<F::Output>, 
[src]

type CombinedTransform = (F, G)

Combined transform after applying transform.

impl<Pix: Debug, F: Debug> Debug for ImageAndTransform<Pix, F> where
    Pix: Pixel,
    Pix::Subpixel: Debug
[src]

Auto Trait Implementations

impl<Pix, F> RefUnwindSafe for ImageAndTransform<Pix, F> where
    F: RefUnwindSafe,
    Pix: RefUnwindSafe,
    <Pix as Pixel>::Subpixel: RefUnwindSafe
[src]

impl<Pix, F> Send for ImageAndTransform<Pix, F> where
    F: Send,
    Pix: Send,
    <Pix as Pixel>::Subpixel: Send
[src]

impl<Pix, F> Sync for ImageAndTransform<Pix, F> where
    F: Sync,
    Pix: Sync,
    <Pix as Pixel>::Subpixel: Sync
[src]

impl<Pix, F> Unpin for ImageAndTransform<Pix, F> where
    F: Unpin,
    Pix: Unpin,
    <Pix as Pixel>::Subpixel: Unpin
[src]

impl<Pix, F> UnwindSafe for ImageAndTransform<Pix, F> where
    F: UnwindSafe,
    Pix: UnwindSafe,
    <Pix as Pixel>::Subpixel: UnwindSafe
[src]

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[src]

impl<T> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

impl<T> TryConv for T

impl<T> TryConv for T

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.