Struct exr::block::chunk::CompressedDeepScanLineBlock
source · pub struct CompressedDeepScanLineBlock {
pub y_coordinate: i32,
pub decompressed_sample_data_size: usize,
pub compressed_pixel_offset_table: Vec<i8>,
pub compressed_sample_data: Vec<u8>,
}
Expand description
This Block
consists of one or more deep scan lines.
Corresponds to type attribute deepscanline
.
Fields§
§y_coordinate: i32
The block’s y coordinate is the pixel space y coordinate of the top scan line in the block. The top scan line block in the image is aligned with the top edge of the data window.
decompressed_sample_data_size: usize
Count of samples.
compressed_pixel_offset_table: Vec<i8>
The pixel offset table is a list of integers, one for each pixel column within the data window. Each entry in the table indicates the total number of samples required to store the pixel in it as well as all pixels to the left of it.
compressed_sample_data: 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 CompressedDeepScanLineBlock
impl Clone for CompressedDeepScanLineBlock
source§fn clone(&self) -> CompressedDeepScanLineBlock
fn clone(&self) -> CompressedDeepScanLineBlock
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 CompressedDeepScanLineBlock
impl RefUnwindSafe for CompressedDeepScanLineBlock
impl Send for CompressedDeepScanLineBlock
impl Sync for CompressedDeepScanLineBlock
impl Unpin for CompressedDeepScanLineBlock
impl UnwindSafe for CompressedDeepScanLineBlock
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