Struct keyset_color::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 copy 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: SkiaColor) -> 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 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

§

type Item = f32

The type of the elements being iterated over.
§

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.
source§

impl PartialEq for Color

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method 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.
source§

impl Copy for Color

source§

impl StructuralPartialEq for Color

Auto Trait Implementations§

§

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> 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,

§

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§

default 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>,

§

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>,

§

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.