Struct overflow_error::WouldOverflow
[−]
[src]
pub struct WouldOverflow;
Operation was not performed, as it would result in overflow or underflow.
Trait Implementations
impl From<WouldOverflow> for CannotDiv
[src]
fn from(_: WouldOverflow) -> CannotDiv
[src]
Performs the conversion.
impl Copy for WouldOverflow
[src]
impl Clone for WouldOverflow
[src]
fn clone(&self) -> WouldOverflow
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for WouldOverflow
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl PartialEq for WouldOverflow
[src]
fn eq(&self, __arg_0: &WouldOverflow) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl Eq for WouldOverflow
[src]
impl Hash for WouldOverflow
[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Fail for WouldOverflow
[src]
fn cause(&self) -> Option<&(Fail + 'static)>
[src]
Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
Returns a reference to the Backtrace
carried by this failure, if it carries one. Read more
fn context<D>(self, context: D) -> Context<D> where
D: Display + Send + Sync + 'static,
[src]
D: Display + Send + Sync + 'static,
Provides context for this failure. Read more
fn compat(self) -> Compat<Self>
[src]
Wraps this failure in a compatibility wrapper that implements std::error::Error
. Read more
fn causes(&self) -> Causes
[src]
Returns a iterator over the causes of this Fail
with itself as the first item and the root_cause
as the final item. Read more
fn root_cause(&self) -> &(Fail + 'static)
[src]
Returns the "root cause" of this Fail
- the last value in the cause chain which does not return an underlying cause
. Read more
impl<T: ?Sized> ErrorBase<T> for WouldOverflow
[src]
type With = WouldOverflowValue<T>
This error, attached with a value.
fn val(self, val: T) -> WouldOverflowValue<T> where
T: Sized,
[src]
T: Sized,
Attaches a value to this error.