pub enum Error {
OutOfLowerBound(f64),
OutOfUpperBound(f64),
Nan,
}Expand description
An error arising from this module’s TryFrom trait implementation for its
Signifix type.
Variants§
OutOfLowerBound(f64)
The given number is below the lower bound ±1.000 (= ±1 024 ^ 0).
OutOfUpperBound(f64)
The given number is above the upper bound ±1 023 Yi (≈ ±1 024 ^ 9)
of the uppermost binary prefix yobi (Yi = 1 024 ^ 8).
Nan
The given number is actually not a number (NaN).
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
impl Copy for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
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