//! Device-dependent CMYK and RGB color models.
use PhantomData;
use crateBackingStore;
use crateRgba;
/// Device-dependent CMYK. The mapping to XYZ is defined by a runtime ICC
/// profile. Channels are always `[C, M, Y, K]` in that order.
;
/// Device-dependent RGB. The mapping to XYZ is defined by a runtime ICC
/// profile. Layout defaults to `Rgba`.
;