pub(crate) enum GlyphShape {
Show 91 variants
Digit0,
Digit1,
Digit2,
Digit3,
Digit4,
Digit5,
Digit6,
Digit7,
Digit8,
Digit9,
Underscore,
Circle,
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
N,
O,
P,
Q,
R,
S,
T,
U,
V,
W,
X,
Y,
Z,
LeftParen,
RightParen,
Add,
Minus,
Comma,
Dot,
Tab,
Backspace,
Space,
Hand,
Sigma,
Pipe,
DoublePipe,
Solidus,
Times,
Hash,
Arrow,
LessThan,
GreaterThan,
Overbar,
Square,
n,
SubsetOf,
Or,
q,
Gamma,
t,
w,
x,
i,
y,
z,
Query,
Union,
Intersection,
j,
k,
Alpha,
Delta,
p,
Epsilon,
h,
SupersetOf,
Beta,
And,
Lambda,
Tilde,
LeftBrace,
RightBrace,
IdenticalTo,
Equals,
Apostrophe,
Asterisk,
}
Expand description
Lincoln Writer character shapes.
All character shapes in the character set table from page 2 of the documentation on the Lincoln Writer channels (65, 66). TX-2 Users Handbook, July 1961.
Variants§
Digit0
Digit1
Digit2
Digit3
Digit4
Digit5
Digit6
Digit7
Digit8
Digit9
Underscore
Circle
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
LeftParen
RightParen
Add
Minus
Comma
Dot
Tab
Backspace
Space
Hand
Sigma
Pipe
DoublePipe
Solidus
Times
Hash
Arrow
LessThan
GreaterThan
Overbar
Square
n
SubsetOf
Or
q
Gamma
t
w
x
i
y
z
Query
Union
Intersection
j
k
Alpha
Delta
p
Epsilon
h
SupersetOf
Beta
And
Lambda
Tilde
LeftBrace
RightBrace
IdenticalTo
Equals
Apostrophe
Asterisk
Trait Implementations§
Source§impl Clone for GlyphShape
impl Clone for GlyphShape
Source§fn clone(&self) -> GlyphShape
fn clone(&self) -> GlyphShape
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 GlyphShape
impl Debug for GlyphShape
Source§impl Ord for GlyphShape
impl Ord for GlyphShape
Source§fn cmp(&self, other: &GlyphShape) -> Ordering
fn cmp(&self, other: &GlyphShape) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GlyphShape
impl PartialEq for GlyphShape
Source§impl PartialOrd for GlyphShape
impl PartialOrd for GlyphShape
impl Copy for GlyphShape
impl Eq for GlyphShape
impl StructuralPartialEq for GlyphShape
Auto Trait Implementations§
impl Freeze for GlyphShape
impl RefUnwindSafe for GlyphShape
impl Send for GlyphShape
impl Sync for GlyphShape
impl Unpin for GlyphShape
impl UnwindSafe for GlyphShape
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<'src, T> IntoMaybe<'src, T> for Twhere
T: 'src,
impl<'src, T> IntoMaybe<'src, T> for Twhere
T: 'src,
§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
§type Iter<'a> = Once<&'a T>
where
T: 'a
type Iter<'a> = Once<&'a T> where T: 'a
An iterator over the items within this container, by reference.
§fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
fn contains(&self, val: &T) -> boolwhere
T: PartialEq,
Check whether an item is contained within this sequence.
§fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
fn to_maybe_ref<'b>(item: <T as Seq<'p, T>>::Item<'b>) -> Maybe<T, &'p T>where
'p: 'b,
Convert an item of the sequence into a [
MaybeRef
].