pub enum ConstrainedU128Error<const MIN: u128, const MAX: u128> {
Lower(Min128Error<MIN>),
Greater(Max128Error<MAX>),
}Expand description
An error that indicates which range bound was violated by a u128 value.
This error can be returned from fallible APIs for ConstrainedU128.
The Lower variant indicates that the value is lower than ConstrainedU128::MIN.
The Greater variant indicates that the value is greater than ConstrainedU128::MAX.
If this crate’s std feature is enabled, this error implements the standard
library’s Error trait.
§Examples
Variants can be pattern matched to identify which bound was violated.
use constrained_int::u128::{ConstrainedU128, ConstrainedU128Error};
type Constrained = ConstrainedU128<1, 254>;
// First is below lower bound, second is above upper bound.
let results = [Constrained::new(0), Constrained::new(255)];
for result in results {
match result {
Err(ConstrainedU128Error::Lower(_)) => /*...*/ (),
Err(ConstrainedU128Error::Greater(_)) => /*...*/ (),
_ => unreachable!(),
}
}Associated constants are guarded against parameters that violate the
MAX > MIN condition.
ⓘ
use constrained_int::u128::{ConstrainedU128, ConstrainedU128Error};
// MIN greater or equal to MAX is invalid.
type InvalidRange = ConstrainedU128<254, 1>;
// None of these will compile for InvalidRange.
let min = InvalidRange::MIN;
let max = InvalidRange::MAX;Variants§
Lower(Min128Error<MIN>)
Indicates that the provided value is lower than ConstrainedU128::MIN.
Greater(Max128Error<MAX>)
Indicates that the provided value is greater than ConstrainedU128::MAX.
Implementations§
Trait Implementations§
Source§impl<const MIN: u128, const MAX: u128> Clone for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Clone for ConstrainedU128Error<MIN, MAX>
Source§fn clone(&self) -> ConstrainedU128Error<MIN, MAX>
fn clone(&self) -> ConstrainedU128Error<MIN, MAX>
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<const MIN: u128, const MAX: u128> Error for ConstrainedU128Error<MIN, MAX>
Available on crate feature std only.
impl<const MIN: u128, const MAX: u128> Error for ConstrainedU128Error<MIN, MAX>
Available on crate feature
std only.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<const MIN: u128, const MAX: u128> From<Max128Error<MAX>> for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> From<Max128Error<MAX>> for ConstrainedU128Error<MIN, MAX>
Source§fn from(err: Max128Error<MAX>) -> Self
fn from(err: Max128Error<MAX>) -> Self
Converts to this type from the input type.
Source§impl<const MIN: u128, const MAX: u128> From<Min128Error<MIN>> for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> From<Min128Error<MIN>> for ConstrainedU128Error<MIN, MAX>
Source§fn from(err: Min128Error<MIN>) -> Self
fn from(err: Min128Error<MIN>) -> Self
Converts to this type from the input type.
Source§impl<const MIN: u128, const MAX: u128> Ord for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Ord for ConstrainedU128Error<MIN, MAX>
Source§fn cmp(&self, other: &ConstrainedU128Error<MIN, MAX>) -> Ordering
fn cmp(&self, other: &ConstrainedU128Error<MIN, MAX>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<const MIN: u128, const MAX: u128> PartialEq for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> PartialEq for ConstrainedU128Error<MIN, MAX>
Source§fn eq(&self, other: &ConstrainedU128Error<MIN, MAX>) -> bool
fn eq(&self, other: &ConstrainedU128Error<MIN, MAX>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<const MIN: u128, const MAX: u128> PartialOrd for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> PartialOrd for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Copy for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Eq for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> StructuralPartialEq for ConstrainedU128Error<MIN, MAX>
Auto Trait Implementations§
impl<const MIN: u128, const MAX: u128> Freeze for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> RefUnwindSafe for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Send for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Sync for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> Unpin for ConstrainedU128Error<MIN, MAX>
impl<const MIN: u128, const MAX: u128> UnwindSafe for ConstrainedU128Error<MIN, MAX>
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