pub enum NumKind {
Integer(BigUint),
Float(f64),
Complex(f64),
}
Variants§
Trait Implementations§
impl StructuralPartialEq for NumKind
Auto Trait Implementations§
impl Freeze for NumKind
impl RefUnwindSafe for NumKind
impl Send for NumKind
impl Sync for NumKind
impl Unpin for NumKind
impl UnwindSafe for NumKind
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