pub(crate) enum NumberRadix {
Decimal,
Hexadecimal,
Octal,
Binary,
}Variants§
Implementations§
Source§impl NumberRadix
impl NumberRadix
pub(crate) fn format_unsigned(&self, value: u128) -> String
pub(crate) fn format_signed(&self, value: i128) -> String
pub(crate) fn format_part_type_val(&self, value_type: PartTypeValue) -> String
Trait Implementations§
Source§impl Clone for NumberRadix
impl Clone for NumberRadix
Source§fn clone(&self) -> NumberRadix
fn clone(&self) -> NumberRadix
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for NumberRadix
impl RefUnwindSafe for NumberRadix
impl Send for NumberRadix
impl Sync for NumberRadix
impl Unpin for NumberRadix
impl UnsafeUnpin for NumberRadix
impl UnwindSafe for NumberRadix
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