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