pub enum Sample {
    F16(f16),
    F32(f32),
    U32(u32),
}
Expand description

A single red, green, blue, or alpha value.

Variants

F16(f16)

A 16-bit float sample.

F32(f32)

A 32-bit float sample.

U32(u32)

An unsigned integer sample.

Implementations

Create a sample containing a 32-bit float.

Create a sample containing a 16-bit float.

Create a sample containing a 32-bit integer.

Convert the sample to an f16 value. This has lower precision than f32. Note: An f32 can only represent integers up to 1024 as precise as a u32 could.

Convert the sample to an f32 value. Note: An f32 can only represent integers up to 8388608 as precise as a u32 could.

Convert the sample to a u32. Rounds floats to integers the same way that 3.1 as u32 does.

Is this value not a number?

Is this value zero or negative zero?

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

Returns the “default value” for a type. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Create this sample from a f16, trying to represent the same numerical value

Create this sample from a f32, trying to represent the same numerical value

Create this sample from a u32, trying to represent the same numerical value

Convert this sample to an f16, trying to represent the same numerical value.

Convert this sample to an f32, trying to represent the same numerical value.

Convert this sample to an u16, trying to represent the same numerical value.

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

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.

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().

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.