pub enum ArithmeticSignError {
Nan,
Negative,
}Variants§
Trait Implementations§
Source§impl Clone for ArithmeticSignError
impl Clone for ArithmeticSignError
Source§fn clone(&self) -> ArithmeticSignError
fn clone(&self) -> ArithmeticSignError
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 ArithmeticSignError
impl Debug for ArithmeticSignError
Source§impl Display for ArithmeticSignError
impl Display for ArithmeticSignError
Source§impl Error for ArithmeticSignError
impl Error for ArithmeticSignError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ArithmeticSignError
impl PartialEq for ArithmeticSignError
impl Copy for ArithmeticSignError
impl Eq for ArithmeticSignError
impl StructuralPartialEq for ArithmeticSignError
Auto Trait Implementations§
impl Freeze for ArithmeticSignError
impl RefUnwindSafe for ArithmeticSignError
impl Send for ArithmeticSignError
impl Sync for ArithmeticSignError
impl Unpin for ArithmeticSignError
impl UnwindSafe for ArithmeticSignError
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