#[repr(u8)]pub enum AlphaCapsNum {
Show 36 variants
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,
}Variants§
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
Trait Implementations§
Source§impl Clone for AlphaCapsNum
impl Clone for AlphaCapsNum
Source§fn clone(&self) -> AlphaCapsNum
fn clone(&self) -> AlphaCapsNum
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 AlphaCapsNum
impl Debug for AlphaCapsNum
Source§impl Display for AlphaCapsNum
impl Display for AlphaCapsNum
Source§impl From<AlphaCapsNum> for u8
impl From<AlphaCapsNum> for u8
Source§fn from(value: AlphaCapsNum) -> u8
fn from(value: AlphaCapsNum) -> u8
Converts to this type from the input type.
Source§impl Hash for AlphaCapsNum
impl Hash for AlphaCapsNum
Source§impl Ord for AlphaCapsNum
impl Ord for AlphaCapsNum
Source§fn cmp(&self, other: &AlphaCapsNum) -> Ordering
fn cmp(&self, other: &AlphaCapsNum) -> 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 AlphaCapsNum
impl PartialEq for AlphaCapsNum
Source§impl PartialOrd for AlphaCapsNum
impl PartialOrd for AlphaCapsNum
Source§impl StrictDecode for AlphaCapsNum
impl StrictDecode for AlphaCapsNum
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for AlphaCapsNum
impl StrictDumb for AlphaCapsNum
fn strict_dumb() -> Self
Source§impl StrictEncode for AlphaCapsNum
impl StrictEncode for AlphaCapsNum
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for AlphaCapsNum
impl StrictEnum for AlphaCapsNum
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for AlphaCapsNum
impl StrictSum for AlphaCapsNum
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 AlphaCapsNum
impl StrictType for AlphaCapsNum
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
Source§impl TryFrom<u8> for AlphaCapsNum
impl TryFrom<u8> for AlphaCapsNum
impl Copy for AlphaCapsNum
impl Eq for AlphaCapsNum
impl RestrictedCharSet for AlphaCapsNum
impl StructuralPartialEq for AlphaCapsNum
Auto Trait Implementations§
impl Freeze for AlphaCapsNum
impl RefUnwindSafe for AlphaCapsNum
impl Send for AlphaCapsNum
impl Sync for AlphaCapsNum
impl Unpin for AlphaCapsNum
impl UnwindSafe for AlphaCapsNum
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