Union COLOR
#[repr(C)]
pub union COLOR {
pub gray: GRAYCOLOR,
pub rgb: RGBCOLOR,
pub cmyk: CMYKCOLOR,
pub XYZ: XYZCOLOR,
pub Yxy: YxyCOLOR,
pub Lab: LabCOLOR,
pub gen3ch: GENERIC3CHANNEL,
pub named: NAMEDCOLOR,
pub hifi: HiFiCOLOR,
pub Anonymous: COLOR_0,
}
Fields§
§gray: GRAYCOLOR
§rgb: RGBCOLOR
§cmyk: CMYKCOLOR
§XYZ: XYZCOLOR
§Yxy: YxyCOLOR
§Lab: LabCOLOR
§gen3ch: GENERIC3CHANNEL
§named: NAMEDCOLOR
§hifi: HiFiCOLOR
§Anonymous: COLOR_0
Trait Implementations§
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