pub struct Color {
pub r: u8,
pub g: u8,
pub b: u8,
pub a: u8,
}
Expand description
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
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Add to the RGBA channels by the amounts specified Read more
Multiple the RGBA channels by the amounts specified Read more
impl<T> Any for T where
T: 'static + ?Sized,
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> Downcast<T> for T
impl<T, U> Into<U> for T where
U: From<T>,
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
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.
The type returned in the event of a conversion error.