pub struct LineSlice<T> {
    pub location: LineIndex,
    pub value: T,
}
Expand description

A single line of pixels. Use LineRef or LineRefMut for easier type names.

Fields

location: LineIndex

Where this line is located inside the image.

value: T

The raw bytes of the pixel line, either &[u8] or &mut [u8]. Must be re-interpreted as slice of f16, f32, or u32, according to the channel data type.

Implementations

Writes the samples (f16, f32, u32 values) into this line value reference. Use write_samples if there is not slice available.

Iterate over all samples in this line, from left to right. The supplied get_line function returns the sample value for a given sample index within the line, which starts at zero for each individual line. Use write_samples_from_slice if you already have a slice of samples.

Read the samples (f16, f32, u32 values) from this line value reference. Use read_samples if there is not slice available.

Iterate over all samples in this line, from left to right. Use read_sample_into_slice if you already have a slice of samples.

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

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.