pub struct ReadBuilder;
Expand description
Utilizes the builder pattern to configure an image reader. This is the initial struct.
Implementations
sourceimpl ReadBuilder
impl ReadBuilder
sourcepub fn no_deep_data(self) -> ReadFlatSamples
pub fn no_deep_data(self) -> ReadFlatSamples
Specify to handle only one sample per channel, disabling “deep data”.
Trait Implementations
sourceimpl Clone for ReadBuilder
impl Clone for ReadBuilder
sourcefn clone(&self) -> ReadBuilder
fn clone(&self) -> ReadBuilder
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 ReadBuilder
impl Debug for ReadBuilder
sourceimpl PartialEq<ReadBuilder> for ReadBuilder
impl PartialEq<ReadBuilder> for ReadBuilder
impl Copy for ReadBuilder
impl Eq for ReadBuilder
impl StructuralEq for ReadBuilder
impl StructuralPartialEq for ReadBuilder
Auto Trait Implementations
impl RefUnwindSafe for ReadBuilder
impl Send for ReadBuilder
impl Sync for ReadBuilder
impl Unpin for ReadBuilder
impl UnwindSafe for ReadBuilder
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