pub enum Accuracy {
Normal,
Reduced,
}Expand description
Status of the computation result.
Variants§
Normal
Computation within normal precision bounds (full machine precision).
Reduced
Result computed but may have lost more than half of significant digits. Occurs when |z| or ν exceeds ~32767 for f64.
Trait Implementations§
impl Copy for Accuracy
impl Eq for Accuracy
impl StructuralPartialEq for Accuracy
Auto Trait Implementations§
impl Freeze for Accuracy
impl RefUnwindSafe for Accuracy
impl Send for Accuracy
impl Sync for Accuracy
impl Unpin for Accuracy
impl UnsafeUnpin for Accuracy
impl UnwindSafe for Accuracy
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