pub enum BitmapFormat {
RGB8888x4(Vec<u8>),
RGB565x1(Vec<u16>),
RGB8888x1(Vec<u32>),
}Variants§
Auto Trait Implementations§
impl Freeze for BitmapFormat
impl RefUnwindSafe for BitmapFormat
impl Send for BitmapFormat
impl Sync for BitmapFormat
impl Unpin for BitmapFormat
impl UnsafeUnpin for BitmapFormat
impl UnwindSafe for BitmapFormat
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