Struct exr::image::read::specific_channels::SpecificChannelsReader
source · [−]pub struct SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> { /* private fields */ }
Expand description
The reader that holds the temporary data that is required to read some specified channels.
Trait Implementations
sourceimpl<PixelStorage, SetPixel, PxReader, Pixel> ChannelsReader for SpecificChannelsReader<PixelStorage, SetPixel, PxReader, Pixel> where
PxReader: RecursivePixelReader,
PxReader::RecursivePixel: IntoTuple<Pixel>,
PxReader::RecursiveChannelDescriptions: IntoNonRecursive,
SetPixel: Fn(&mut PixelStorage, Vec2<usize>, Pixel),
impl<PixelStorage, SetPixel, PxReader, Pixel> ChannelsReader for SpecificChannelsReader<PixelStorage, SetPixel, PxReader, Pixel> where
PxReader: RecursivePixelReader,
PxReader::RecursivePixel: IntoTuple<Pixel>,
PxReader::RecursiveChannelDescriptions: IntoNonRecursive,
SetPixel: Fn(&mut PixelStorage, Vec2<usize>, Pixel),
type Channels = SpecificChannels<PixelStorage, <<PxReader as RecursivePixelReader>::RecursiveChannelDescriptions as IntoNonRecursive>::NonRecursive>
type Channels = SpecificChannels<PixelStorage, <<PxReader as RecursivePixelReader>::RecursiveChannelDescriptions as IntoNonRecursive>::NonRecursive>
The type of the resulting channel collection
sourcefn filter_block(&self, tile: TileCoordinates) -> bool
fn filter_block(&self, tile: TileCoordinates) -> bool
Specify whether a single block of pixels should be loaded from the file
sourcefn read_block(
&mut self,
header: &Header,
block: UncompressedBlock
) -> UnitResult
fn read_block(
&mut self,
header: &Header,
block: UncompressedBlock
) -> UnitResult
Load a single pixel block, which has not been filtered, into the reader, accumulating the channel data
sourcefn into_channels(self) -> Self::Channels
fn into_channels(self) -> Self::Channels
Deliver the final accumulated channel collection for the image
sourceimpl<PixelStorage: Clone, SetPixel: Clone, PixelReader: Clone, Pixel: Clone> Clone for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
impl<PixelStorage: Clone, SetPixel: Clone, PixelReader: Clone, Pixel: Clone> Clone for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
sourcefn clone(
&self
) -> SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
fn clone(
&self
) -> SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
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<PixelStorage: Debug, SetPixel: Debug, PixelReader: Debug, Pixel: Debug> Debug for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
impl<PixelStorage: Debug, SetPixel: Debug, PixelReader: Debug, Pixel: Debug> Debug for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
impl<PixelStorage: Copy, SetPixel: Copy, PixelReader: Copy, Pixel: Copy> Copy for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel>
Auto Trait Implementations
impl<PixelStorage, SetPixel, PixelReader, Pixel> RefUnwindSafe for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
Pixel: RefUnwindSafe,
PixelReader: RefUnwindSafe,
PixelStorage: RefUnwindSafe,
SetPixel: RefUnwindSafe,
impl<PixelStorage, SetPixel, PixelReader, Pixel> Send for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
Pixel: Send,
PixelReader: Send,
PixelStorage: Send,
SetPixel: Send,
impl<PixelStorage, SetPixel, PixelReader, Pixel> Sync for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
Pixel: Sync,
PixelReader: Sync,
PixelStorage: Sync,
SetPixel: Sync,
impl<PixelStorage, SetPixel, PixelReader, Pixel> Unpin for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
Pixel: Unpin,
PixelReader: Unpin,
PixelStorage: Unpin,
SetPixel: Unpin,
impl<PixelStorage, SetPixel, PixelReader, Pixel> UnwindSafe for SpecificChannelsReader<PixelStorage, SetPixel, PixelReader, Pixel> where
Pixel: UnwindSafe,
PixelReader: UnwindSafe,
PixelStorage: 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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more