pub struct FlatSamplesReader { /* private fields */ }
Expand description
Processes pixel blocks from a file and accumulates them into a grid of samples, for example “Red” or “Alpha”.
Trait Implementations
sourceimpl Clone for FlatSamplesReader
impl Clone for FlatSamplesReader
sourcefn clone(&self) -> FlatSamplesReader
fn clone(&self) -> FlatSamplesReader
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 Debug for FlatSamplesReader
impl Debug for FlatSamplesReader
sourceimpl PartialEq<FlatSamplesReader> for FlatSamplesReader
impl PartialEq<FlatSamplesReader> for FlatSamplesReader
sourcefn eq(&self, other: &FlatSamplesReader) -> bool
fn eq(&self, other: &FlatSamplesReader) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &FlatSamplesReader) -> bool
fn ne(&self, other: &FlatSamplesReader) -> bool
This method tests for !=
.
sourceimpl SamplesReader for FlatSamplesReader
impl SamplesReader for FlatSamplesReader
type Samples = FlatSamples
type Samples = FlatSamples
The type of resulting sample storage
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_line(&mut self, line: LineRef<'_>) -> UnitResult
fn read_line(&mut self, line: LineRef<'_>) -> UnitResult
Load a single pixel line, which has not been filtered, into the reader, accumulating the sample data
sourcefn into_samples(self) -> FlatSamples
fn into_samples(self) -> FlatSamples
Deliver the final accumulated sample storage for the image
impl StructuralPartialEq for FlatSamplesReader
Auto Trait Implementations
impl RefUnwindSafe for FlatSamplesReader
impl Send for FlatSamplesReader
impl Sync for FlatSamplesReader
impl Unpin for FlatSamplesReader
impl UnwindSafe for FlatSamplesReader
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