Struct exr::block::chunk::CompressedTileBlock   
source · pub struct CompressedTileBlock {
    pub coordinates: TileCoordinates,
    pub compressed_pixels: Vec<u8>,
}Expand description
This Block is a tile of flat (non-deep) data.
Corresponds to type attribute tiledimage.
Fields§
§coordinates: TileCoordinatesThe tile location.
compressed_pixels: Vec<u8>One or more scan lines may be stored together as a scan line block. The number of scan lines per block depends on how the pixel data are compressed. For each line in the tile, for each channel, the row values are contiguous.
Implementations§
Trait Implementations§
source§impl Clone for CompressedTileBlock
 
impl Clone for CompressedTileBlock
source§fn clone(&self) -> CompressedTileBlock
 
fn clone(&self) -> CompressedTileBlock
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