#[repr(u8)]pub enum AlphaNumDot {
Show 63 variants
Dot = 46,
Zero = 48,
One = 49,
Two = 50,
Three = 51,
Four = 52,
Five = 53,
Six = 54,
Seven = 55,
Eight = 56,
Nine = 57,
A = 65,
B = 66,
C = 67,
D = 68,
E = 69,
F = 70,
G = 71,
H = 72,
I = 73,
J = 74,
K = 75,
L = 76,
M = 77,
N = 78,
O = 79,
P = 80,
Q = 81,
R = 82,
S = 83,
T = 84,
U = 85,
V = 86,
W = 87,
X = 88,
Y = 89,
Z = 90,
a = 97,
b = 98,
c = 99,
d = 100,
e = 101,
f = 102,
g = 103,
h = 104,
i = 105,
j = 106,
k = 107,
l = 108,
m = 109,
n = 110,
o = 111,
p = 112,
q = 113,
r = 114,
s = 115,
t = 116,
u = 117,
v = 118,
w = 119,
x = 120,
y = 121,
z = 122,
}Variants§
Dot = 46
Zero = 48
One = 49
Two = 50
Three = 51
Four = 52
Five = 53
Six = 54
Seven = 55
Eight = 56
Nine = 57
A = 65
B = 66
C = 67
D = 68
E = 69
F = 70
G = 71
H = 72
I = 73
J = 74
K = 75
L = 76
M = 77
N = 78
O = 79
P = 80
Q = 81
R = 82
S = 83
T = 84
U = 85
V = 86
W = 87
X = 88
Y = 89
Z = 90
a = 97
b = 98
c = 99
d = 100
e = 101
f = 102
g = 103
h = 104
i = 105
j = 106
k = 107
l = 108
m = 109
n = 110
o = 111
p = 112
q = 113
r = 114
s = 115
t = 116
u = 117
v = 118
w = 119
x = 120
y = 121
z = 122
Trait Implementations§
Source§impl Clone for AlphaNumDot
impl Clone for AlphaNumDot
Source§fn clone(&self) -> AlphaNumDot
fn clone(&self) -> AlphaNumDot
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 AlphaNumDot
impl Debug for AlphaNumDot
Source§impl Display for AlphaNumDot
impl Display for AlphaNumDot
Source§impl From<AlphaNumDot> for u8
impl From<AlphaNumDot> for u8
Source§fn from(value: AlphaNumDot) -> u8
fn from(value: AlphaNumDot) -> u8
Converts to this type from the input type.
Source§impl Hash for AlphaNumDot
impl Hash for AlphaNumDot
Source§impl Ord for AlphaNumDot
impl Ord for AlphaNumDot
Source§fn cmp(&self, other: &AlphaNumDot) -> Ordering
fn cmp(&self, other: &AlphaNumDot) -> 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 AlphaNumDot
impl PartialEq for AlphaNumDot
Source§impl PartialOrd for AlphaNumDot
impl PartialOrd for AlphaNumDot
Source§impl StrictDecode for AlphaNumDot
impl StrictDecode for AlphaNumDot
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for AlphaNumDot
impl StrictDumb for AlphaNumDot
fn strict_dumb() -> Self
Source§impl StrictEncode for AlphaNumDot
impl StrictEncode for AlphaNumDot
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for AlphaNumDot
impl StrictEnum for AlphaNumDot
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for AlphaNumDot
impl StrictSum for AlphaNumDot
const ALL_VARIANTS: &'static [(u8, &'static str)]
fn variant_name(&self) -> &'static str
fn strict_check_variants()
fn variant_name_by_tag(tag: u8) -> Option<VariantName>
fn variant_ord(&self) -> u8
Source§impl StrictType for AlphaNumDot
impl StrictType for AlphaNumDot
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
Source§impl TryFrom<u8> for AlphaNumDot
impl TryFrom<u8> for AlphaNumDot
impl Copy for AlphaNumDot
impl Eq for AlphaNumDot
impl RestrictedCharSet for AlphaNumDot
impl StructuralPartialEq for AlphaNumDot
Auto Trait Implementations§
impl Freeze for AlphaNumDot
impl RefUnwindSafe for AlphaNumDot
impl Send for AlphaNumDot
impl Sync for AlphaNumDot
impl Unpin for AlphaNumDot
impl UnwindSafe for AlphaNumDot
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