pub struct RGB<R, G, B>{
pub r: R,
pub g: G,
pub b: B,
}Fields§
§r: R§g: G§b: BImplementations§
Auto Trait Implementations§
impl<R, G, B> Freeze for RGB<R, G, B>
impl<R, G, B> RefUnwindSafe for RGB<R, G, B>
impl<R, G, B> Send for RGB<R, G, B>
impl<R, G, B> Sync for RGB<R, G, B>
impl<R, G, B> Unpin for RGB<R, G, B>
impl<R, G, B> UnwindSafe for RGB<R, G, B>
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