#[repr(C)]pub struct Color {
pub r: f64,
pub g: f64,
pub b: f64,
pub a: f64,
}
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
Red component of the color
g: f64
Green component of the color
b: f64
Blue component of the color
a: f64
Alpha component of the color
Implementations§
Trait Implementations§
source§impl PartialEq for Color
impl PartialEq for Color
impl Copy for Color
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more