#[repr(u8)]pub enum DecDot {
Dot = 46,
Zero = 48,
One = 49,
Two = 50,
Three = 51,
Four = 52,
Five = 53,
Six = 54,
Seven = 55,
Eight = 56,
Nine = 57,
}Variants§
Dot = 46
Zero = 48
One = 49
Two = 50
Three = 51
Four = 52
Five = 53
Six = 54
Seven = 55
Eight = 56
Nine = 57
Trait Implementations§
Source§impl Ord for DecDot
impl Ord for DecDot
Source§impl PartialOrd for DecDot
impl PartialOrd for DecDot
Source§impl StrictDecode for DecDot
impl StrictDecode for DecDot
fn strict_decode(reader: &mut impl TypedRead) -> Result<Self, DecodeError>
fn strict_read(reader: impl ReadRaw) -> Result<Self, DecodeError>
Source§impl StrictDumb for DecDot
impl StrictDumb for DecDot
fn strict_dumb() -> Self
Source§impl StrictEncode for DecDot
impl StrictEncode for DecDot
fn strict_encode<W: TypedWrite>(&self, writer: W) -> Result<W>
fn strict_write(&self, writer: impl WriteRaw) -> Result<()>
Source§impl StrictEnum for DecDot
impl StrictEnum for DecDot
fn from_variant_name( name: &VariantName, ) -> Result<Self, VariantError<&VariantName>>
fn strict_type_info() -> TypeInfo<Self>
Source§impl StrictSum for DecDot
impl StrictSum for DecDot
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 DecDot
impl StrictType for DecDot
const STRICT_LIB_NAME: &'static str = LIB_NAME_STD
fn strict_name() -> Option<TypeName>
impl Copy for DecDot
impl Eq for DecDot
impl RestrictedCharSet for DecDot
impl StructuralPartialEq for DecDot
Auto Trait Implementations§
impl Freeze for DecDot
impl RefUnwindSafe for DecDot
impl Send for DecDot
impl Sync for DecDot
impl Unpin for DecDot
impl UnwindSafe for DecDot
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