Struct exr::image::read::specific_channels::CollectPixels
source · [−]pub struct CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel> { /* private fields */ }
Expand description
Specifies how to collect all the specified channels into a number of individual pixels.
Trait Implementations
sourceimpl<ReadChannels: Clone, Pixel: Clone, PixelStorage: Clone, CreatePixels: Clone, SetPixel: Clone> Clone for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
impl<ReadChannels: Clone, Pixel: Clone, PixelStorage: Clone, CreatePixels: Clone, SetPixel: Clone> Clone for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
sourcefn clone(
&self
) -> CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
fn clone(
&self
) -> CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<ReadChannels: Debug, Pixel: Debug, PixelStorage: Debug, CreatePixels: Debug, SetPixel: Debug> Debug for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
impl<ReadChannels: Debug, Pixel: Debug, PixelStorage: Debug, CreatePixels: Debug, SetPixel: Debug> Debug for CollectPixels<ReadChannels, Pixel, PixelStorage, CreatePixels, SetPixel>
sourceimpl<'s, InnerChannels, Pixel, PixelStorage, CreatePixels, SetPixel: 's> 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),
impl<'s, InnerChannels, Pixel, PixelStorage, CreatePixels, SetPixel: 's> 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),
type Reader = SpecificChannelsReader<PixelStorage, &'s SetPixel, <InnerChannels as ReadSpecificChannel>::RecursivePixelReader, Pixel>
type Reader = SpecificChannelsReader<PixelStorage, &'s SetPixel, <InnerChannels as ReadSpecificChannel>::RecursivePixelReader, Pixel>
The type of the temporary channels reader
sourcefn create_channels_reader(&'s self, header: &Header) -> Result<Self::Reader>
fn create_channels_reader(&'s self, header: &Header) -> Result<Self::Reader>
Create a single reader for all channels of a specific layer
sourcefn first_valid_layer(self) -> ReadFirstValidLayer<Self> where
Self: Sized,
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. Read more
sourcefn all_layers(self) -> ReadAllLayers<Self> where
Self: Sized,
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. Read more
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more