Enum exr::meta::BlockDescription
source · pub enum BlockDescription {
ScanLines,
Tiles(TileDescription),
}
Expand description
How the image pixels are split up into separate blocks.
Variants§
ScanLines
The image is divided into scan line blocks. The number of scan lines in a block depends on the compression method.
Tiles(TileDescription)
The image is divided into tile blocks. Also specifies the size of each tile in the image and whether this image contains multiple resolution levels.
Implementations§
Trait Implementations§
source§impl Clone for BlockDescription
impl Clone for BlockDescription
source§fn clone(&self) -> BlockDescription
fn clone(&self) -> BlockDescription
Returns a copy 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 moresource§impl Debug for BlockDescription
impl Debug for BlockDescription
source§impl Hash for BlockDescription
impl Hash for BlockDescription
source§impl PartialEq for BlockDescription
impl PartialEq for BlockDescription
source§fn eq(&self, other: &BlockDescription) -> bool
fn eq(&self, other: &BlockDescription) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for BlockDescription
impl Eq for BlockDescription
impl StructuralPartialEq for BlockDescription
Auto Trait Implementations§
impl Freeze for BlockDescription
impl RefUnwindSafe for BlockDescription
impl Send for BlockDescription
impl Sync for BlockDescription
impl Unpin for BlockDescription
impl UnwindSafe for BlockDescription
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