pub struct Color { /* private fields */ }
Expand description

An RGBA color value, holding four floating point components.

Guarantees

  • All values are in 0..=1 range.

Implementations

A transparent color.

A black color.

A white color.

Creates a new color from 4 components.

All values must be in 0..=1 range.

Creates a new color from 4 components.

u8 will be divided by 255 to get the float component.

Returns color’s red component.

The value is guarantee to be in a 0..=1 range.

Returns color’s green component.

The value is guarantee to be in a 0..=1 range.

Returns color’s blue component.

The value is guarantee to be in a 0..=1 range.

Returns color’s alpha component.

The value is guarantee to be in a 0..=1 range.

Sets the red component value.

The new value will be clipped to the 0..=1 range.

Sets the green component value.

The new value will be clipped to the 0..=1 range.

Sets the blue component value.

The new value will be clipped to the 0..=1 range.

Sets the alpha component value.

The new value will be clipped to the 0..=1 range.

Shifts color’s opacity.

Essentially, multiplies color’s alpha by opacity.

opacity will be clamped to the 0..=1 range first. The final alpha will also be clamped.

Check that color is opaque.

Alpha == 1.0

Converts into a premultiplied color.

Converts into ColorU8.

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 !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.