Struct exr::block::BlockIndex
source · [−]pub struct BlockIndex {
pub layer: usize,
pub pixel_position: Vec2<usize>,
pub pixel_size: Vec2<usize>,
pub level: Vec2<usize>,
}
Expand description
Specifies where a block of pixel data should be placed in the actual image. This is a globally unique identifier which includes the layer, level index, and pixel location.
Fields
layer: usize
Index of the layer.
pixel_position: Vec2<usize>
Index of the top left pixel from the block within the data window.
pixel_size: Vec2<usize>
Number of pixels in this block, extending to the right and downwards. Stays the same across all resolution levels.
level: Vec2<usize>
Index of the mip or rip level in the image.
Trait Implementations
sourceimpl Clone for BlockIndex
impl Clone for BlockIndex
sourcefn clone(&self) -> BlockIndex
fn clone(&self) -> BlockIndex
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
sourceimpl Debug for BlockIndex
impl Debug for BlockIndex
sourceimpl Hash for BlockIndex
impl Hash for BlockIndex
sourceimpl PartialEq<BlockIndex> for BlockIndex
impl PartialEq<BlockIndex> for BlockIndex
sourcefn eq(&self, other: &BlockIndex) -> bool
fn eq(&self, other: &BlockIndex) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &BlockIndex) -> bool
fn ne(&self, other: &BlockIndex) -> bool
This method tests for !=
.
impl Copy for BlockIndex
impl Eq for BlockIndex
impl StructuralEq for BlockIndex
impl StructuralPartialEq for BlockIndex
Auto Trait Implementations
impl RefUnwindSafe for BlockIndex
impl Send for BlockIndex
impl Sync for BlockIndex
impl Unpin for BlockIndex
impl UnwindSafe for BlockIndex
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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more