#[repr(u32)]pub enum LCDBitmapDrawMode {
kDrawModeCopy = 0,
kDrawModeWhiteTransparent = 1,
kDrawModeBlackTransparent = 2,
kDrawModeFillWhite = 3,
kDrawModeFillBlack = 4,
kDrawModeXOR = 5,
kDrawModeNXOR = 6,
kDrawModeInverted = 7,
}Variants§
kDrawModeCopy = 0
kDrawModeWhiteTransparent = 1
kDrawModeBlackTransparent = 2
kDrawModeFillWhite = 3
kDrawModeFillBlack = 4
kDrawModeXOR = 5
kDrawModeNXOR = 6
kDrawModeInverted = 7
Trait Implementations§
Source§impl Clone for LCDBitmapDrawMode
impl Clone for LCDBitmapDrawMode
Source§fn clone(&self) -> LCDBitmapDrawMode
fn clone(&self) -> LCDBitmapDrawMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LCDBitmapDrawMode
impl Debug for LCDBitmapDrawMode
Source§impl Hash for LCDBitmapDrawMode
impl Hash for LCDBitmapDrawMode
Source§impl PartialEq for LCDBitmapDrawMode
impl PartialEq for LCDBitmapDrawMode
impl Copy for LCDBitmapDrawMode
impl Eq for LCDBitmapDrawMode
impl StructuralPartialEq for LCDBitmapDrawMode
Auto Trait Implementations§
impl Freeze for LCDBitmapDrawMode
impl RefUnwindSafe for LCDBitmapDrawMode
impl Send for LCDBitmapDrawMode
impl Sync for LCDBitmapDrawMode
impl Unpin for LCDBitmapDrawMode
impl UnwindSafe for LCDBitmapDrawMode
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