#[repr(u8)]pub enum AlphaCaps {
Show 26 variants
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§
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 Ord for AlphaCaps
impl Ord for AlphaCaps
Source§impl PartialOrd for AlphaCaps
impl PartialOrd for AlphaCaps
Source§impl StrictDecode for AlphaCaps
impl StrictDecode for AlphaCaps
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for AlphaCaps
impl StrictDumb for AlphaCaps
fn strict_dumb() -> Self
Source§impl StrictEncode for AlphaCaps
impl StrictEncode for AlphaCaps
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for AlphaCaps
impl StrictEnum for AlphaCaps
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for AlphaCaps
impl StrictSum for AlphaCaps
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 AlphaCaps
impl StrictType for AlphaCaps
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
impl Copy for AlphaCaps
impl Eq for AlphaCaps
impl RestrictedCharSet for AlphaCaps
impl StructuralPartialEq for AlphaCaps
Auto Trait Implementations§
impl Freeze for AlphaCaps
impl RefUnwindSafe for AlphaCaps
impl Send for AlphaCaps
impl Sync for AlphaCaps
impl Unpin for AlphaCaps
impl UnwindSafe for AlphaCaps
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