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