pub enum Levels<Samples> {
    Singular(Samples),
    Mip {
        rounding_mode: RoundingMode,
        level_data: LevelMaps<Samples>,
    },
    Rip {
        rounding_mode: RoundingMode,
        level_data: RipMaps<Samples>,
    },
}
Expand description

One or multiple resolution levels of the same image. Samples can be FlatSamples.

Variants

Singular(Samples)

A single image without smaller versions of itself. If you only want to handle exclusively this case, use Samples directly, and not Levels<Samples>.

Mip

Fields

rounding_mode: RoundingMode

Whether to round up or down when calculating Mip/Rip levels.

level_data: LevelMaps<Samples>

The smaller versions of the original.

Contains uniformly scaled smaller versions of the original.

Rip

Fields

rounding_mode: RoundingMode

Whether to round up or down when calculating Mip/Rip levels.

level_data: RipMaps<Samples>

The smaller versions of the original.

Contains any possible combination of smaller versions of the original.

Implementations

Get a resolution level by index, sorted by size, decreasing.

Get a resolution level by index, sorted by size, decreasing.

Get a slice of all resolution levels, sorted by size, decreasing.

Get a mutable slice of all resolution levels, sorted by size, decreasing.

Whether this stores multiple resolution levels.

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 !=.

Compare self with the other. Exceptional behaviour: Read more

Compare self with the other. Panics if not equal. Read more

Generate the file meta data regarding the number type of this storage

Generate the file meta data regarding resolution levels

The type of the temporary writer for this sample storage

Create a temporary writer for this sample storage

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.