pub enum Oom {
Undefined,
Precise(usize),
Approx(usize),
}Expand description
Order of magnitude variants enumeration.
Variants§
Undefined
Order of magnitude is not defined for nought PlacesRow.
Precise(usize)
Precise oom.
Check with Approx(usize) variant.
Approx(usize)
Approximated oom is result of operation on PlacesRow requiring
greater precision than provided by SQUARE_ROOT_TEN_COMPARATOR.
Check with fn ord_of_mag.
Trait Implementations§
impl StructuralPartialEq for Oom
Auto Trait Implementations§
impl Freeze for Oom
impl RefUnwindSafe for Oom
impl Send for Oom
impl Sync for Oom
impl Unpin for Oom
impl UnsafeUnpin for Oom
impl UnwindSafe for Oom
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