pub struct Color {
    pub r: u8,
    pub g: u8,
    pub b: u8,
    pub a: u8,
}
Expand description

This represents an RGBA color and is used to store a pixel by Image and PixelsWrapper

Fields

r: u8g: u8b: u8a: u8

Implementations

Converts 0.0..=1.0 to 0..=255 Values outside 0.0..=1.0 are clamped

Create new color with alpha set to 255

Create a new color with red, green and blue set to value and alpha set to 255

Convert an i32 into a Color where bytes match the format [R,G,B,A]

Convert f32 array in the format [R,G,B,A] to color where 0.0 = 0, and 1.0 = 255

Split color into array in the format [R,G,B,A]

Convert color to i32 in the format [R,G,B,A]

Convert color to f32 array in the format [R,G,B,A] where 0.0 = 0, and 1.0 = 255

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

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. 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

Add to the RGBA channels by the amounts specified Read more

Multiple the RGBA channels by the amounts specified 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 alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

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

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.