Struct RGB
Source pub struct RGB {
pub r: u8,
pub g: u8,
pub b: u8,
}
Expand description
Creates a new RGB color with a hex code
3fn main() {
4 let text = "lorem ipsum quia dolor sit amet, consectetur, adipisci velit";
5
6 let start = RGB::from_hex(0x40c9ff);
7 let end = RGB::from_hex(0xe81cff);
8
9 println!("{}", text.fg_gradient(start, end));
10 println!("{}", Gradient::new(start, end).reverse().to(text));
11}
Creates a new RGB color with three [f32] values
Creates a grayscale RGB color
Creates a grayscale RGB color with a [f32] value
Creates a new RGB color from a HSL color
Computes the linear interpolation between self and other for t
The resulting type after applying the + operator.
The resulting type after applying the + operator.
The resulting type after applying the + operator.
The resulting type after applying the + operator.
Performs copy-assignment from
source.
Read more
Applies
self to the foreground color of
c Read more
Applies
self to the background color of
c Read more
Formats the value using the given formatter.
Read more
Formats the value using the given formatter.
Read more
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
Converts to this type from the input type.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the * operator.
The resulting type after applying the - operator.
The resulting type after applying the - operator.
Tests for self and other values to be equal, and is used by ==.
Tests for !=. The default implementation is almost always sufficient,
and should not be overridden without very good reason.
The resulting type after applying the - operator.
The resulting type after applying the - operator.
The resulting type after applying the - operator.
The resulting type after applying the - operator.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from
self to
dest.
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
Converts the given value to a
String.
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.