pub struct ReadFlatSamples;
Expand description
Specify to read only flat samples and no “deep data”
Implementations
sourceimpl ReadFlatSamples
impl ReadFlatSamples
sourcepub fn largest_resolution_level(self) -> ReadLargestLevel<Self>
pub fn largest_resolution_level(self) -> ReadLargestLevel<Self>
Specify to read only the highest resolution level, skipping all smaller variations.
sourcepub fn all_resolution_levels(self) -> ReadAllLevels<Self>
pub fn all_resolution_levels(self) -> ReadAllLevels<Self>
Specify to read all contained resolution levels from the image, if any.
Trait Implementations
sourceimpl Clone for ReadFlatSamples
impl Clone for ReadFlatSamples
sourcefn clone(&self) -> ReadFlatSamples
fn clone(&self) -> ReadFlatSamples
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 ReadFlatSamples
impl Debug for ReadFlatSamples
sourceimpl PartialEq<ReadFlatSamples> for ReadFlatSamples
impl PartialEq<ReadFlatSamples> for ReadFlatSamples
sourceimpl ReadSamples for ReadFlatSamples
impl ReadSamples for ReadFlatSamples
type Reader = FlatSamplesReader
type Reader = FlatSamplesReader
The type of the temporary samples reader
sourcefn create_sample_reader(
&self,
header: &Header,
channel: &ChannelDescription
) -> Result<Self::Reader>
fn create_sample_reader(
&self,
header: &Header,
channel: &ChannelDescription
) -> Result<Self::Reader>
Create a single reader for a single channel of a layer
sourceimpl ReadSamplesLevel for ReadFlatSamples
impl ReadSamplesLevel for ReadFlatSamples
type Reader = FlatSamplesReader
type Reader = FlatSamplesReader
The type of the temporary level reader
sourcefn create_samples_level_reader(
&self,
_header: &Header,
channel: &ChannelDescription,
level: Vec2<usize>,
resolution: Vec2<usize>
) -> Result<Self::Reader>
fn create_samples_level_reader(
&self,
_header: &Header,
channel: &ChannelDescription,
level: Vec2<usize>,
resolution: Vec2<usize>
) -> Result<Self::Reader>
Create a single reader for a single resolution level
impl Copy for ReadFlatSamples
impl Eq for ReadFlatSamples
impl StructuralEq for ReadFlatSamples
impl StructuralPartialEq for ReadFlatSamples
Auto Trait Implementations
impl RefUnwindSafe for ReadFlatSamples
impl Send for ReadFlatSamples
impl Sync for ReadFlatSamples
impl Unpin for ReadFlatSamples
impl UnwindSafe for ReadFlatSamples
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