Struct iced_style::Color
source · [−]Expand description
A color in the sRGB color space.
Fields
r: f32Red component, 0.0 - 1.0
g: f32Green component, 0.0 - 1.0
b: f32Blue component, 0.0 - 1.0
a: f32Transparency, 0.0 - 1.0
Implementations
sourceimpl Color
impl Color
sourcepub const TRANSPARENT: Color = Color{r: 0.0, g: 0.0, b: 0.0, a: 0.0,}
pub const TRANSPARENT: Color = Color{r: 0.0, g: 0.0, b: 0.0, a: 0.0,}
A color with no opacity.
sourcepub fn new(r: f32, g: f32, b: f32, a: f32) -> Color
pub fn new(r: f32, g: f32, b: f32, a: f32) -> Color
Creates a new Color.
In debug mode, it will panic if the values are not in the correct range: 0.0 - 1.0
sourcepub const fn from_rgb(r: f32, g: f32, b: f32) -> Color
pub const fn from_rgb(r: f32, g: f32, b: f32) -> Color
Creates a Color from its RGB components.
sourcepub const fn from_rgba(r: f32, g: f32, b: f32, a: f32) -> Color
pub const fn from_rgba(r: f32, g: f32, b: f32, a: f32) -> Color
Creates a Color from its RGBA components.
Trait Implementations
sourceimpl From<Color> for Background
impl From<Color> for Background
sourcefn from(color: Color) -> Background
fn from(color: Color) -> Background
Converts to this type from the input type.
impl Copy for Color
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more