Expand description
RGBA double precision color.
This is not to be used as a generic color type, only for specific wgpu interfaces.
Fields
r: f64
g: f64
b: f64
a: f64
Implementations
impl Color
impl Color
pub const TRANSPARENT: Color = Self{r: 0.0, g: 0.0, b: 0.0, a: 0.0,}
pub const BLACK: Color = Self{r: 0.0, g: 0.0, b: 0.0, a: 1.0,}
pub const WHITE: Color = Self{r: 1.0, g: 1.0, b: 1.0, a: 1.0,}
pub const RED: Color = Self{r: 1.0, g: 0.0, b: 0.0, a: 1.0,}
pub const GREEN: Color = Self{r: 0.0, g: 1.0, b: 0.0, a: 1.0,}
pub const BLUE: Color = Self{r: 0.0, g: 0.0, b: 1.0, a: 1.0,}
Trait Implementations
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