pub enum IntegerPrefix {
Hexadecimal,
Decimal,
Octal,
Binary,
}Variants§
Trait Implementations§
Source§impl Debug for IntegerPrefix
impl Debug for IntegerPrefix
Source§impl PartialEq for IntegerPrefix
impl PartialEq for IntegerPrefix
Source§fn eq(&self, other: &IntegerPrefix) -> bool
fn eq(&self, other: &IntegerPrefix) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntegerPrefix
Auto Trait Implementations§
impl Freeze for IntegerPrefix
impl RefUnwindSafe for IntegerPrefix
impl Send for IntegerPrefix
impl Sync for IntegerPrefix
impl Unpin for IntegerPrefix
impl UnsafeUnpin for IntegerPrefix
impl UnwindSafe for IntegerPrefix
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