pub type PackedArgb<P = u32> = Packed<Argb, P>;Expand description
A packed representation of RGBA in ARGB order.
Aliased Type§
#[repr(transparent)]pub struct PackedArgb<P = u32> {
    pub color: P,
    pub channel_order: PhantomData<Argb>,
}Fields§
§color: PThe color packed into a type P, such as u32 or [u8; 4].
channel_order: PhantomData<Argb>The channel order for the color components in the packed data. See
ComponentOrder.