pub struct Configuration {
order: BitOrder,
size: u8,
tiff: bool,
}
Expand description
Describes the static parameters for creating a decoder.
Fields§
§order: BitOrder
§size: u8
§tiff: bool
Implementations§
Source§impl Configuration
impl Configuration
Sourcepub fn new(order: BitOrder, size: u8) -> Self
pub fn new(order: BitOrder, size: u8) -> Self
Create a configuration to decode with the specified bit order and symbol size.
§Panics
The size
needs to be in the interval 2..=12
.
Sourcepub fn with_tiff_size_switch(order: BitOrder, size: u8) -> Self
pub fn with_tiff_size_switch(order: BitOrder, size: u8) -> Self
Create a configuration for a TIFF compatible decoder.
§Panics
The size
needs to be in the interval 2..=12
.
Trait Implementations§
Source§impl Clone for Configuration
impl Clone for Configuration
Source§fn clone(&self) -> Configuration
fn clone(&self) -> Configuration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for Configuration
impl RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl UnwindSafe for Configuration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more