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
sourceimpl Clone for BlockDescription
impl Clone for BlockDescription
sourcefn clone(&self) -> BlockDescription
fn clone(&self) -> BlockDescription
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 BlockDescription
impl Debug for BlockDescription
sourceimpl Hash for BlockDescription
impl Hash for BlockDescription
sourceimpl PartialEq<BlockDescription> for BlockDescription
impl PartialEq<BlockDescription> for BlockDescription
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &BlockDescription) -> bool
fn ne(&self, other: &BlockDescription) -> bool
This method tests for !=
.
impl Copy for BlockDescription
impl Eq for BlockDescription
impl StructuralEq for BlockDescription
impl StructuralPartialEq for BlockDescription
Auto Trait Implementations
impl RefUnwindSafe for BlockDescription
impl Send for BlockDescription
impl Sync for BlockDescription
impl Unpin for BlockDescription
impl UnwindSafe for BlockDescription
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