Struct julia_set::transform::ImageAndTransform

source ·
pub struct ImageAndTransform<Pix, F>
where Pix: Pixel,
{ /* private fields */ }
Expand description

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

Implementations§

source§

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

source

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

Applies transforms accumulated in this object to the source image.

Trait Implementations§

source§

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

§

type CombinedTransform = (F, G)

Combined transform after applying transform.
source§

fn apply(self, transform: G) -> ImageAndTransform<Pix, (F, G)>

Appends transform to the list of transforms to be performed on the source image.
source§

impl<Pix, F: Debug> Debug for ImageAndTransform<Pix, F>
where Pix: Pixel + Debug, Pix::Subpixel: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<Pix, F> Freeze for ImageAndTransform<Pix, F>
where F: Freeze,

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.