#[repr(C)]pub struct Color3 {
pub b: u8,
pub g: u8,
pub r: u8,
}Expand description
A color with red, green and blue channels.
Fields§
§b: u8§g: u8§r: u8Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Color3
impl RefUnwindSafe for Color3
impl Send for Color3
impl Sync for Color3
impl Unpin for Color3
impl UnwindSafe for Color3
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