pub struct CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> {
    read_channels: ReadChannels,
    create_pixels: CreatePixels,
    set_pixel: SetPixel,
    px: PhantomData<(Pixel, PixelStorage)>,
}
Expand description

Specifies how to collect all the specified channels into a number of individual pixels.

Fields§

§read_channels: ReadChannels§create_pixels: CreatePixels§set_pixel: SetPixel§px: PhantomData<(Pixel, PixelStorage)>

Trait Implementations§

source§

impl<ReadChannels: Clone, Pixel: Clone, PixelStorage: Clone, CreatePixels: Clone, SetPixel: Clone> Clone for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>

source§

fn clone( &self ) -> CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>

Returns a copy of the value. Read more
1.0.0 · source§

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

Performs copy-assignment from source. Read more
source§

impl<ReadChannels: Debug, Pixel: Debug, PixelStorage: Debug, CreatePixels: Debug, SetPixel: Debug> Debug for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>

source§

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

Formats the value using the given formatter. Read more
source§

impl<'s, InnerChannels, Pixel, PixelStorage, CreatePixels, SetPixel> ReadChannels<'s> for CollectPixels<InnerChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where InnerChannels: ReadSpecificChannel, <InnerChannels::RecursivePixelReader as RecursivePixelReader>::RecursivePixel: IntoTuple<Pixel>, <InnerChannels::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions: IntoNonRecursive, CreatePixels: Fn(Vec2<usize>, &<<InnerChannels::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions as IntoNonRecursive>::NonRecursive) -> PixelStorage, SetPixel: Fn(&mut PixelStorage, Vec2<usize>, Pixel) + 's,

§

type Reader = SpecificChannelsReader<PixelStorage, &'s SetPixel, <InnerChannels as ReadSpecificChannel>::RecursivePixelReader, Pixel>

The type of the temporary channels reader
source§

fn create_channels_reader(&'s self, header: &Header) -> Result<Self::Reader>

Create a single reader for all channels of a specific layer
source§

fn first_valid_layer(self) -> ReadFirstValidLayer<Self>where Self: Sized,

Read only the first layer which meets the previously specified requirements For example, skips layers with deep data, if specified earlier. Aborts if the image contains no layers.
source§

fn all_layers(self) -> ReadAllLayers<Self>where Self: Sized,

Reads all layers, including an empty list. Aborts if any of the layers are invalid, even if only one of the layers contains unexpected data.
source§

impl<ReadChannels: Copy, Pixel: Copy, PixelStorage: Copy, CreatePixels: Copy, SetPixel: Copy> Copy for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>

Auto Trait Implementations§

§

impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> RefUnwindSafe for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where CreatePixels: RefUnwindSafe, Pixel: RefUnwindSafe, PixelStorage: RefUnwindSafe, ReadChannels: RefUnwindSafe, SetPixel: RefUnwindSafe,

§

impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> Send for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where CreatePixels: Send, Pixel: Send, PixelStorage: Send, ReadChannels: Send, SetPixel: Send,

§

impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> Sync for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where CreatePixels: Sync, Pixel: Sync, PixelStorage: Sync, ReadChannels: Sync, SetPixel: Sync,

§

impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> Unpin for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where CreatePixels: Unpin, Pixel: Unpin, PixelStorage: Unpin, ReadChannels: Unpin, SetPixel: Unpin,

§

impl<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> UnwindSafe for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>where CreatePixels: UnwindSafe, Pixel: UnwindSafe, PixelStorage: UnwindSafe, ReadChannels: UnwindSafe, SetPixel: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

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

Initializes a with the given initializer. Read more
source§

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

Dereferences the given pointer. Read more
source§

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

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

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

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.