Color

Struct Color 

Source
pub struct Color(/* private fields */);
Expand description

sRGB Color type.

Internally stores red, green, and blue components as f32.

Implementations§

Source§

impl Color

Source

pub const fn new(r: f32, g: f32, b: f32) -> Self

Creates a new Color value with the given red, green, and blue component values.

The components should be in the range 0.0..1.0 for a semantically valid colour, although this function does not perform any range checks.

Source

pub const fn r(&self) -> f32

Returns the red component.

Source

pub const fn g(&self) -> f32

Returns the green component.

Source

pub const fn b(&self) -> f32

Returns the blue component.

Source

pub fn iter(&self) -> impl Iterator<Item = &f32>

Returns an iterator over the colour’s components.

Source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut f32>

Returns an iterator that allows modifying the colour’s components.

Modified components should be in the range 0.0..1.0 for a semantically valid colour, although this function does not perform any range checks.

Source

pub fn map(self, f: impl FnMut(f32) -> f32) -> Self

Applies the function f to each of the colour’s components.

The resulting components should be in the range 0.0..1.0 for a semantically valid colour, although this function does not perform any range checks.

Source

pub fn as_rgb8(&self) -> (u8, u8, u8)

Returns a tuple containing the red, green, and blue components as u8.

Source

pub fn as_rgb16(&self) -> (u16, u16, u16)

Returns a tuple containing the red, green, and blue components as u16.

Source

pub fn from_rgb8((r, g, b): (u8, u8, u8)) -> Self

Creates a new Color from a tuple containing the red, green, and blue components as u8.

Source

pub fn from_rgb16((r, g, b): (u16, u16, u16)) -> Self

Creates a new Color from a tuple containing the red, green, and blue components as u16.

Source

pub const fn as_slice(&self) -> &[f32]

Returns a slice containing the red, green, and blue components of the colour.

Source

pub fn as_mut_slice(&mut self) -> &mut [f32]

Returns a mutable slice containing the red, green, and blue components of the colour.

Source§

impl Color

Source

pub fn lighter(self, val: f32) -> Self

Lightens the colour by a given amount.

val should be in the range 0.0..1.0 for a semantically valid factor, although this function does not perform any range checks.

Source

pub fn darker(self, val: f32) -> Self

Darkens the colour by a given amount.

val should be in the range 0.0..1.0 for a semantically valid factor, although this function does not perform any range checks.

Source

pub fn highlight(self, val: f32) -> Self

Either calls lighter or darker on the colour depending on its luminance.

val should be in the range 0.0..1.0 for a semantically valid factor, although this function does not perform any range checks.

Trait Implementations§

Source§

impl AsMut<[f32]> for Color

Source§

fn as_mut(&mut self) -> &mut [f32]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsMut<[f32; 3]> for Color

Source§

fn as_mut(&mut self) -> &mut [f32; 3]

Converts this type into a mutable reference of the (usually inferred) input type.
Source§

impl AsRef<[f32]> for Color

Source§

fn as_ref(&self) -> &[f32]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl AsRef<[f32; 3]> for Color

Source§

fn as_ref(&self) -> &[f32; 3]

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for Color

Source§

fn clone(&self) -> Color

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Color

Source§

fn default() -> Color

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

impl Display for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<[f32; 3]> for Color

Source§

fn from(value: [f32; 3]) -> Self

Converts to this type from the input type.
Source§

impl From<(f32, f32, f32)> for Color

Source§

fn from((r, g, b): (f32, f32, f32)) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for [f32; 3]

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for (f32, f32, f32)

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for Color

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for Color

Source§

fn from(value: SkiaColor) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for RGB<f32>

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for RGB16

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Color> for RGB8

Source§

fn from(value: Color) -> Self

Converts to this type from the input type.
Source§

impl From<Rgb<f32>> for Color

Source§

fn from(value: RGB<f32>) -> Self

Converts to this type from the input type.
Source§

impl From<Rgb<u16>> for Color

Source§

fn from(value: RGB16) -> Self

Converts to this type from the input type.
Source§

impl From<Rgb<u8>> for Color

Source§

fn from(value: RGB8) -> Self

Converts to this type from the input type.
Source§

impl IntoIterator for Color

Source§

type Item = f32

The type of the elements being iterated over.
Source§

type IntoIter = IntoIter<f32, 3>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl LowerHex for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for Color

Source§

fn eq(&self, other: &Color) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl UpperHex for Color

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for Color

Source§

impl StructuralPartialEq for Color

Auto Trait Implementations§

§

impl Freeze for Color

§

impl RefUnwindSafe for Color

§

impl Send for Color

§

impl Sync for Color

§

impl Unpin for Color

§

impl UnwindSafe for Color

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.