pub struct LcdState {
pub initialized: bool,
pub sleeping: bool,
pub display_on: bool,
pub backlight: u8,
pub current_window: DrawWindow,
pub current_command: Option<u8>,
/* private fields */
}Fields§
§initialized: bool§sleeping: bool§display_on: bool§backlight: u8§current_window: DrawWindow§current_command: Option<u8>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LcdState
impl RefUnwindSafe for LcdState
impl Send for LcdState
impl Sync for LcdState
impl Unpin for LcdState
impl UnsafeUnpin for LcdState
impl UnwindSafe for LcdState
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