pub struct ColorRGBA {
pub r: u8,
pub g: u8,
pub b: u8,
pub a: u8,
}Expand description
Colores RGBA
Fields§
§r: u8§g: u8§b: u8§a: u8Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ColorRGBA
impl RefUnwindSafe for ColorRGBA
impl Send for ColorRGBA
impl Sync for ColorRGBA
impl Unpin for ColorRGBA
impl UnsafeUnpin for ColorRGBA
impl UnwindSafe for ColorRGBA
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