pub struct I128Ge<const N: i128>;Expand description
Checks whether the given value is greater than or equal to N.
Trait Implementations§
Source§impl<const N: i128> Ord for I128Ge<N>
impl<const N: i128> Ord for I128Ge<N>
Source§impl<const N: i128> PartialOrd for I128Ge<N>
impl<const N: i128> PartialOrd for I128Ge<N>
Source§impl<const N: i128> Predicate<i128> for I128Ge<N>
impl<const N: i128> Predicate<i128> for I128Ge<N>
Source§type Error = I128GeError
type Error = I128GeError
The associated error type which is used to represent checks.
Source§fn check(value: &i128) -> Result<(), Self::Error>
fn check(value: &i128) -> Result<(), Self::Error>
Checks if the value of type
T satisfies the predicate. Read moreimpl<const N: i128> Copy for I128Ge<N>
impl<const N: i128> Eq for I128Ge<N>
impl<const N: i128> StructuralPartialEq for I128Ge<N>
Auto Trait Implementations§
impl<const N: i128> Freeze for I128Ge<N>
impl<const N: i128> RefUnwindSafe for I128Ge<N>
impl<const N: i128> Send for I128Ge<N>
impl<const N: i128> Sync for I128Ge<N>
impl<const N: i128> Unpin for I128Ge<N>
impl<const N: i128> UnwindSafe for I128Ge<N>
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