pub enum ColorTable {
RGBTRIPLE(Vec<[u8; 3]>),
RGBQUAD(Vec<[u8; 4]>),
}
Expand description
Color table used in some versions of the format. Can be either an array of RGB (RGBTRIPLE
) or RGBA (RGBQUAD
) colors.
Variants§
Auto Trait Implementations§
impl Freeze for ColorTable
impl RefUnwindSafe for ColorTable
impl Send for ColorTable
impl Sync for ColorTable
impl Unpin for ColorTable
impl UnwindSafe for ColorTable
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