pub struct ReadLargestLevel<DeepOrFlatSamples> {
    pub read_samples: DeepOrFlatSamples,
}
Expand description

Specify to read only the highest resolution level, skipping all smaller variations. The sample storage can be [ReadFlatSamples].

Fields

read_samples: DeepOrFlatSamples

The sample reading specification

Implementations

Read all arbitrary channels in each layer.

Read only layers that contain rgba channels. Skips any other channels in the layer. The alpha channel will contain the value 1.0 if no alpha channel can be found in the image.

Using two closures, define how to store the pixels. The first closure creates an image, and the second closure inserts a single pixel. The type of the pixel can be defined by the second closure; it must be a tuple containing four values, each being either f16, f32, u32 or Sample.

Throws an error for images with deep data or subsampling. Use specific_channels or all_channels if you want to read something other than rgba.

Read only layers that contain rgb channels. Skips any other channels in the layer.

Using two closures, define how to store the pixels. The first closure creates an image, and the second closure inserts a single pixel. The type of the pixel can be defined by the second closure; it must be a tuple containing three values, each being either f16, f32, u32 or Sample.

Throws an error for images with deep data or subsampling. Use specific_channels or all_channels if you want to read something other than rgb.

Read only layers that contain the specified channels, skipping any other channels in the layer. Further specify which channels should be included by calling .required("ChannelName") or .optional("ChannelName", default_value) on the result of this function. Call collect_pixels afterwards to define the pixel container for your set of channels.

Throws an error for images with deep data or subsampling.

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.