pub struct LineIndex {
    pub layer: usize,
    pub channel: usize,
    pub level: Vec2<usize>,
    pub position: Vec2<usize>,
    pub sample_count: usize,
}
Expand description

Specifies where a row of pixels lies inside an image. This is a globally unique identifier which includes the layer, channel index, and pixel location.

Fields

layer: usize

Index of the layer.

channel: usize

The channel index of the layer.

level: Vec2<usize>

Index of the mip or rip level in the image.

position: Vec2<usize>

Position of the most left pixel of the row.

sample_count: usize

The width of the line; the number of samples in this row, that is, the number of f16, f32, or u32 values.

Implementations

Iterates the lines of this block index in interleaved fashion: For each line in this block, this iterator steps once through each channel. This is how lines are stored in a pixel data block.

Does not check whether self.layer_index, self.level, self.size and self.position are valid indices.__

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.