pub struct NumericSettings {
pub digits: u32,
pub form: NumericForm,
pub fuzz: u32,
}Expand description
Numeric settings for the current execution context.
Fields§
§digits: u32Number of significant digits (default 9).
form: NumericFormExponential notation form.
fuzz: u32Digits of “fuzziness” for comparisons (default 0).
Trait Implementations§
Source§impl Clone for NumericSettings
impl Clone for NumericSettings
Source§fn clone(&self) -> NumericSettings
fn clone(&self) -> NumericSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NumericSettings
impl Debug for NumericSettings
Auto Trait Implementations§
impl Freeze for NumericSettings
impl RefUnwindSafe for NumericSettings
impl Send for NumericSettings
impl Sync for NumericSettings
impl Unpin for NumericSettings
impl UnsafeUnpin for NumericSettings
impl UnwindSafe for NumericSettings
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