pub enum Mode {
PopOn,
PaintOn,
RollUp2,
RollUp3,
RollUp4,
}Expand description
A CEA-08 presentation mode
Variants§
PopOn
The Pop-On CEA-608 mode. Text is stored in a hidden buffer that is swapped with the displayed text.
PaintOn
The Paint-On CEA-608 mode. Text is written directly to the display as it arrives.
RollUp2
The Roll-Up 2 CEA-608 mode. Text is appended to rows and on a CR command, all of the rows move up one row. This variant contains 2 rows of display.
RollUp3
The Roll-Up 2 CEA-608 mode. Text is appended to rows and on a CR command, all of the rows move up one row. This variant contains 3 rows of display.
RollUp4
The Roll-Up 2 CEA-608 mode. Text is appended to rows and on a CR command, all of the rows move up one row. This variant contains 4 rows of display.
Implementations§
Trait Implementations§
impl Copy for Mode
impl Eq for Mode
impl StructuralPartialEq for Mode
Auto Trait Implementations§
impl Freeze for Mode
impl RefUnwindSafe for Mode
impl Send for Mode
impl Sync for Mode
impl Unpin for Mode
impl UnwindSafe for Mode
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