Struct rich_sdl2_rust::color::Rgba
source · pub struct Rgba {
pub r: u8,
pub g: u8,
pub b: u8,
pub a: u8,
}Expand description
A RGBA color structure.
Fields§
§r: u8A red component in RGB.
g: u8A green component in RGB.
b: u8A blue component in RGB.
a: u8An alpha component in RGB.
Trait Implementations§
source§impl Ord for Rgba
impl Ord for Rgba
source§impl PartialEq for Rgba
impl PartialEq for Rgba
source§impl PartialOrd for Rgba
impl PartialOrd for Rgba
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Rgba
impl Eq for Rgba
impl StructuralPartialEq for Rgba
Auto Trait Implementations§
impl RefUnwindSafe for Rgba
impl Send for Rgba
impl Sync for Rgba
impl Unpin for Rgba
impl UnwindSafe for Rgba
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