pub enum Real {
F32(f32),
F64(f64),
}Expand description
Inexact real (spec §6.1). NaN/Inf are allowed to exist only in this layer (spec §6.2),
and only arise from explicit collapse; they never enter the symbolic layer.
Variants§
Trait Implementations§
impl Copy for Real
impl StructuralPartialEq for Real
Auto Trait Implementations§
impl Freeze for Real
impl RefUnwindSafe for Real
impl Send for Real
impl Sync for Real
impl Unpin for Real
impl UnsafeUnpin for Real
impl UnwindSafe for Real
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