Enum strict_encoding::ascii::AlphaSmall  
source · #[repr(u8)]pub enum AlphaSmall {
Show 26 variants
    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§
Trait Implementations§
source§impl Clone for AlphaSmall
 
impl Clone for AlphaSmall
source§fn clone(&self) -> AlphaSmall
 
fn clone(&self) -> AlphaSmall
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 AlphaSmall
 
impl Debug for AlphaSmall
source§impl Display for AlphaSmall
 
impl Display for AlphaSmall
source§impl From<AlphaSmall> for u8
 
impl From<AlphaSmall> for u8
source§fn from(value: AlphaSmall) -> u8
 
fn from(value: AlphaSmall) -> u8
Converts to this type from the input type.
source§impl Hash for AlphaSmall
 
impl Hash for AlphaSmall
source§impl Ord for AlphaSmall
 
impl Ord for AlphaSmall
source§fn cmp(&self, other: &AlphaSmall) -> Ordering
 
fn cmp(&self, other: &AlphaSmall) -> 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<AlphaSmall> for AlphaSmall
 
impl PartialEq<AlphaSmall> for AlphaSmall
source§fn eq(&self, other: &AlphaSmall) -> bool
 
fn eq(&self, other: &AlphaSmall) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl PartialOrd<AlphaSmall> for AlphaSmall
 
impl PartialOrd<AlphaSmall> for AlphaSmall
source§fn partial_cmp(&self, other: &AlphaSmall) -> Option<Ordering>
 
fn partial_cmp(&self, other: &AlphaSmall) -> 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 AlphaSmall
 
impl StrictDecode for AlphaSmall
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
source§impl StrictDumb for AlphaSmall
 
impl StrictDumb for AlphaSmall
fn strict_dumb() -> Self
source§impl StrictEncode for AlphaSmall
 
impl StrictEncode for AlphaSmall
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
source§impl StrictEnum for AlphaSmall
 
impl StrictEnum for AlphaSmall
fn from_variant_name(name: &FieldName) -> Result<Self, VariantError<&FieldName>>
fn strict_type_info() -> TypeInfo<Self>
source§impl StrictSum for AlphaSmall
 
impl StrictSum for AlphaSmall
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 AlphaSmall
 
impl StrictType for AlphaSmall
const STRICT_LIB_NAME: &'static str = STD_LIB
fn strict_name() -> Option<TypeName>
source§impl TryFrom<u8> for AlphaSmall
 
impl TryFrom<u8> for AlphaSmall
impl Copy for AlphaSmall
impl Eq for AlphaSmall
impl StructuralEq for AlphaSmall
impl StructuralPartialEq for AlphaSmall
Auto Trait Implementations§
impl RefUnwindSafe for AlphaSmall
impl Send for AlphaSmall
impl Sync for AlphaSmall
impl Unpin for AlphaSmall
impl UnwindSafe for AlphaSmall
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.