pub enum NumberOutOfRange {
BelowLowerBound,
AboveUpperBound,
}
Expand description
Input value is out of range for Q1.x format
Variants§
Trait Implementations§
source§impl Debug for NumberOutOfRange
impl Debug for NumberOutOfRange
source§impl Format for NumberOutOfRange
impl Format for NumberOutOfRange
source§impl From<NumberOutOfRange> for CordicError
impl From<NumberOutOfRange> for CordicError
source§fn from(value: NumberOutOfRange) -> Self
fn from(value: NumberOutOfRange) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NumberOutOfRange
impl RefUnwindSafe for NumberOutOfRange
impl Send for NumberOutOfRange
impl Sync for NumberOutOfRange
impl Unpin for NumberOutOfRange
impl UnwindSafe for NumberOutOfRange
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