Expand description
How the image pixels are split up into separate blocks.
Variants
ScanLines
The image is divided into scan line blocks. The number of scan lines in a block depends on the compression method.
Tiles(Vec2<usize>)
The image is divided into tile blocks. Also specifies the size of each tile in the image and whether this image contains multiple resolution levels.
The inner Vec2
describes the size of each tile.
Stays the same number of pixels across all levels.
Trait Implementations
impl Copy for Blocks
impl Eq for Blocks
impl StructuralEq for Blocks
impl StructuralPartialEq for Blocks
Auto Trait Implementations
impl RefUnwindSafe for Blocks
impl Send for Blocks
impl Sync for Blocks
impl Unpin for Blocks
impl UnwindSafe for Blocks
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