pub enum Numeric<'a> {
Integer(&'a str, IntegerPrefix),
Float(&'a str),
}Variants§
Integer(&'a str, IntegerPrefix)
Float(&'a str)
Trait Implementations§
impl<'a> StructuralPartialEq for Numeric<'a>
Auto Trait Implementations§
impl<'a> Freeze for Numeric<'a>
impl<'a> RefUnwindSafe for Numeric<'a>
impl<'a> Send for Numeric<'a>
impl<'a> Sync for Numeric<'a>
impl<'a> Unpin for Numeric<'a>
impl<'a> UnwindSafe for Numeric<'a>
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