pub enum ConstrainedU16Error<const MIN: u16, const MAX: u16> {
Lower(MinU16Error<MIN>),
Greater(MaxU16Error<MAX>),
}Expand description
An error that indicates which range bound was violated by a u16 value.
This error can be returned from fallible APIs for ConstrainedU16.
The Lower variant indicates that the value is lower than ConstrainedU16::MIN.
The Greater variant indicates that the value is greater than ConstrainedU16::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::u16::{ConstrainedU16, ConstrainedU16Error};
type Constrained = ConstrainedU16<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(ConstrainedU16Error::Lower(_)) => /*...*/ (),
Err(ConstrainedU16Error::Greater(_)) => /*...*/ (),
_ => unreachable!(),
}
}Associated constants are guarded against parameters that violate the
MAX > MIN condition.
ⓘ
use constrained_int::u16::{ConstrainedU16, ConstrainedU16Error};
// MIN greater or equal to MAX is invalid.
type InvalidRange = ConstrainedU16<254, 1>;
// None of these will compile for InvalidRange.
let min = InvalidRange::MIN;
let max = InvalidRange::MAX;Variants§
Lower(MinU16Error<MIN>)
Indicates that the provided value is lower than ConstrainedU16::MIN.
Greater(MaxU16Error<MAX>)
Indicates that the provided value is greater than ConstrainedU16::MAX.
Implementations§
Trait Implementations§
Source§impl<const MIN: u16, const MAX: u16> Clone for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Clone for ConstrainedU16Error<MIN, MAX>
Source§fn clone(&self) -> ConstrainedU16Error<MIN, MAX>
fn clone(&self) -> ConstrainedU16Error<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: u16, const MAX: u16> Error for ConstrainedU16Error<MIN, MAX>
Available on crate feature std only.
impl<const MIN: u16, const MAX: u16> Error for ConstrainedU16Error<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: u16, const MAX: u16> From<MaxU16Error<MAX>> for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> From<MaxU16Error<MAX>> for ConstrainedU16Error<MIN, MAX>
Source§fn from(err: MaxU16Error<MAX>) -> Self
fn from(err: MaxU16Error<MAX>) -> Self
Converts to this type from the input type.
Source§impl<const MIN: u16, const MAX: u16> From<MinU16Error<MIN>> for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> From<MinU16Error<MIN>> for ConstrainedU16Error<MIN, MAX>
Source§fn from(err: MinU16Error<MIN>) -> Self
fn from(err: MinU16Error<MIN>) -> Self
Converts to this type from the input type.
Source§impl<const MIN: u16, const MAX: u16> Ord for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Ord for ConstrainedU16Error<MIN, MAX>
Source§fn cmp(&self, other: &ConstrainedU16Error<MIN, MAX>) -> Ordering
fn cmp(&self, other: &ConstrainedU16Error<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: u16, const MAX: u16> PartialEq for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> PartialEq for ConstrainedU16Error<MIN, MAX>
Source§fn eq(&self, other: &ConstrainedU16Error<MIN, MAX>) -> bool
fn eq(&self, other: &ConstrainedU16Error<MIN, MAX>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<const MIN: u16, const MAX: u16> PartialOrd for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> PartialOrd for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Copy for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Eq for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> StructuralPartialEq for ConstrainedU16Error<MIN, MAX>
Auto Trait Implementations§
impl<const MIN: u16, const MAX: u16> Freeze for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> RefUnwindSafe for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Send for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Sync for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> Unpin for ConstrainedU16Error<MIN, MAX>
impl<const MIN: u16, const MAX: u16> UnwindSafe for ConstrainedU16Error<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