Enum strict_encoding::ascii::AlphaNumDash
source · #[repr(u8)]pub enum AlphaNumDash {
Show 63 variants
Dash,
Zero,
One,
Two,
Three,
Four,
Five,
Six,
Seven,
Eight,
Nine,
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,
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,
}Variants§
Dash
Zero
One
Two
Three
Four
Five
Six
Seven
Eight
Nine
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
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
Trait Implementations§
source§impl Clone for AlphaNumDash
impl Clone for AlphaNumDash
source§fn clone(&self) -> AlphaNumDash
fn clone(&self) -> AlphaNumDash
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 AlphaNumDash
impl Debug for AlphaNumDash
source§impl Display for AlphaNumDash
impl Display for AlphaNumDash
source§impl From<AlphaNumDash> for u8
impl From<AlphaNumDash> for u8
source§fn from(value: AlphaNumDash) -> u8
fn from(value: AlphaNumDash) -> u8
Converts to this type from the input type.
source§impl Hash for AlphaNumDash
impl Hash for AlphaNumDash
source§impl Ord for AlphaNumDash
impl Ord for AlphaNumDash
source§fn cmp(&self, other: &AlphaNumDash) -> Ordering
fn cmp(&self, other: &AlphaNumDash) -> 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<AlphaNumDash> for AlphaNumDash
impl PartialEq<AlphaNumDash> for AlphaNumDash
source§fn eq(&self, other: &AlphaNumDash) -> bool
fn eq(&self, other: &AlphaNumDash) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<AlphaNumDash> for AlphaNumDash
impl PartialOrd<AlphaNumDash> for AlphaNumDash
source§fn partial_cmp(&self, other: &AlphaNumDash) -> Option<Ordering>
fn partial_cmp(&self, other: &AlphaNumDash) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl StrictDecode for AlphaNumDash
impl StrictDecode for AlphaNumDash
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
source§impl StrictDumb for AlphaNumDash
impl StrictDumb for AlphaNumDash
fn strict_dumb() -> Self
source§impl StrictEncode for AlphaNumDash
impl StrictEncode for AlphaNumDash
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
source§impl StrictEnum for AlphaNumDash
impl StrictEnum for AlphaNumDash
fn from_variant_name(name: &FieldName) -> Result<Self, VariantError<&FieldName>>
fn strict_type_info() -> TypeInfo<Self>
source§impl StrictSum for AlphaNumDash
impl StrictSum for AlphaNumDash
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<FieldName>
fn variant_ord(&self) -> u8
source§impl StrictType for AlphaNumDash
impl StrictType for AlphaNumDash
const STRICT_LIB_NAME: &'static str = STD_LIB
fn strict_name() -> Option<TypeName>
source§impl TryFrom<u8> for AlphaNumDash
impl TryFrom<u8> for AlphaNumDash
impl Copy for AlphaNumDash
impl Eq for AlphaNumDash
impl StructuralEq for AlphaNumDash
impl StructuralPartialEq for AlphaNumDash
Auto Trait Implementations§
impl RefUnwindSafe for AlphaNumDash
impl Send for AlphaNumDash
impl Sync for AlphaNumDash
impl Unpin for AlphaNumDash
impl UnwindSafe for AlphaNumDash
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.