Enum exr::block::chunk::CompressedBlock
source · pub enum CompressedBlock {
ScanLine(CompressedScanLineBlock),
Tile(CompressedTileBlock),
DeepScanLine(CompressedDeepScanLineBlock),
DeepTile(CompressedDeepTileBlock),
}
Expand description
The raw, possibly compressed pixel data of a file.
Each layer in a file can have a different type.
Also contains positioning information that locates this
data block in the corresponding layer.
Exists inside a Chunk
.
Variants§
ScanLine(CompressedScanLineBlock)
Scan line blocks of flat data.
Tile(CompressedTileBlock)
Tiles of flat data.
DeepScanLine(CompressedDeepScanLineBlock)
Scan line blocks of deep data.
DeepTile(CompressedDeepTileBlock)
Tiles of deep data.
Trait Implementations§
source§impl Clone for CompressedBlock
impl Clone for CompressedBlock
source§fn clone(&self) -> CompressedBlock
fn clone(&self) -> CompressedBlock
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 more