#[repr(u8)]pub enum HexDecSmall {
Show 16 variants
Zero = 48,
One = 49,
Two = 50,
Three = 51,
Four = 52,
Five = 53,
Six = 54,
Seven = 55,
Eight = 56,
Nine = 57,
Ten = 97,
Eleven = 98,
Twelve = 99,
Thirteen = 100,
Fourteen = 101,
Fifteen = 102,
}Variants§
Zero = 48
One = 49
Two = 50
Three = 51
Four = 52
Five = 53
Six = 54
Seven = 55
Eight = 56
Nine = 57
Ten = 97
Eleven = 98
Twelve = 99
Thirteen = 100
Fourteen = 101
Fifteen = 102
Trait Implementations§
Source§impl Clone for HexDecSmall
impl Clone for HexDecSmall
Source§fn clone(&self) -> HexDecSmall
fn clone(&self) -> HexDecSmall
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 HexDecSmall
impl Debug for HexDecSmall
Source§impl Display for HexDecSmall
impl Display for HexDecSmall
Source§impl From<HexDecSmall> for u8
impl From<HexDecSmall> for u8
Source§fn from(value: HexDecSmall) -> u8
fn from(value: HexDecSmall) -> u8
Converts to this type from the input type.
Source§impl Hash for HexDecSmall
impl Hash for HexDecSmall
Source§impl Ord for HexDecSmall
impl Ord for HexDecSmall
Source§fn cmp(&self, other: &HexDecSmall) -> Ordering
fn cmp(&self, other: &HexDecSmall) -> 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 HexDecSmall
impl PartialEq for HexDecSmall
Source§impl PartialOrd for HexDecSmall
impl PartialOrd for HexDecSmall
Source§impl StrictDecode for HexDecSmall
impl StrictDecode for HexDecSmall
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for HexDecSmall
impl StrictDumb for HexDecSmall
fn strict_dumb() -> Self
Source§impl StrictEncode for HexDecSmall
impl StrictEncode for HexDecSmall
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for HexDecSmall
impl StrictEnum for HexDecSmall
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for HexDecSmall
impl StrictSum for HexDecSmall
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 HexDecSmall
impl StrictType for HexDecSmall
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
Source§impl TryFrom<u8> for HexDecSmall
impl TryFrom<u8> for HexDecSmall
impl Copy for HexDecSmall
impl Eq for HexDecSmall
impl RestrictedCharSet for HexDecSmall
impl StructuralPartialEq for HexDecSmall
Auto Trait Implementations§
impl Freeze for HexDecSmall
impl RefUnwindSafe for HexDecSmall
impl Send for HexDecSmall
impl Sync for HexDecSmall
impl Unpin for HexDecSmall
impl UnwindSafe for HexDecSmall
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