Expand description
A Block
of possibly compressed flat scan lines.
Corresponds to type attribute scanlineimage
.
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.
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
sourceimpl Clone for CompressedScanLineBlock
impl Clone for CompressedScanLineBlock
sourcefn clone(&self) -> CompressedScanLineBlock
fn clone(&self) -> CompressedScanLineBlock
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
Auto Trait Implementations
impl RefUnwindSafe for CompressedScanLineBlock
impl Send for CompressedScanLineBlock
impl Sync for CompressedScanLineBlock
impl Unpin for CompressedScanLineBlock
impl UnwindSafe for CompressedScanLineBlock
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