Struct ethcore_util::error::OutOfBounds
[−]
[src]
pub struct OutOfBounds<T: Debug> { pub min: Option<T>, pub max: Option<T>, pub found: T, }
Error indicating value found is outside of a valid range.
Fields
min: Option<T>
Minimum allowed value.
max: Option<T>
Maximum allowed value.
found: T
Value found.
Trait Implementations
impl<T: Debug + Debug> Debug for OutOfBounds<T>
[src]
impl<T: PartialEq + Debug> PartialEq for OutOfBounds<T>
[src]
fn eq(&self, __arg_0: &OutOfBounds<T>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &OutOfBounds<T>) -> bool
This method tests for !=
.
impl<T: Eq + Debug> Eq for OutOfBounds<T>
[src]
impl<T: Clone + Debug> Clone for OutOfBounds<T>
[src]
fn clone(&self) -> OutOfBounds<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more