#[repr(u8)]pub enum UpCharBits {
Show 15 variants
UpA = 119,
UpB = 127,
UpC = 57,
UpE = 121,
UpF = 113,
UpG = 61,
UpH = 118,
UpI = 48,
UpJ = 30,
UpL = 56,
UpO = 63,
UpP = 115,
UpS = 109,
UpU = 62,
UpZ = 91,
}
Expand description
Maps a character to its closest possible representation on a 7-segment display.
Variants§
UpA = 119
Uppercase A
UpB = 127
Uppercase B
UpC = 57
Uppercase C
UpE = 121
Uppercase E
UpF = 113
Uppercase F
UpG = 61
Uppercase G
UpH = 118
Uppercase H
UpI = 48
Uppercase I
UpJ = 30
Uppercase J
UpL = 56
Uppercase L
UpO = 63
Uppercase O
UpP = 115
Uppercase P
UpS = 109
Uppercase S
UpU = 62
Uppercase U
UpZ = 91
Uppercase Z
Implementations§
Trait Implementations§
Source§impl Clone for UpCharBits
impl Clone for UpCharBits
Source§fn clone(&self) -> UpCharBits
fn clone(&self) -> UpCharBits
Returns a copy 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 UpCharBits
impl Debug for UpCharBits
Source§impl Format for UpCharBits
impl Format for UpCharBits
impl Copy for UpCharBits
Auto Trait Implementations§
impl Freeze for UpCharBits
impl RefUnwindSafe for UpCharBits
impl Send for UpCharBits
impl Sync for UpCharBits
impl Unpin for UpCharBits
impl UnwindSafe for UpCharBits
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