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: TileCoordinates
The 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 moreAuto Trait Implementations§
impl Freeze for CompressedTileBlock
impl RefUnwindSafe for CompressedTileBlock
impl Send for CompressedTileBlock
impl Sync for CompressedTileBlock
impl Unpin for CompressedTileBlock
impl UnwindSafe for CompressedTileBlock
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