pub struct MinRange<T: PartialOrd<T>>(pub T);
Expand description
Rule to constraint the minimum
range of any type that implement PartialOrd
§Example
use type_rules::prelude::*;
#[derive(Validator)]
struct NonZeroFloat(#[rule(MinRange(1_f32))] f32);
Tuple Fields§
§0: T
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for MinRange<T>where
T: Freeze,
impl<T> RefUnwindSafe for MinRange<T>where
T: RefUnwindSafe,
impl<T> Send for MinRange<T>where
T: Send,
impl<T> Sync for MinRange<T>where
T: Sync,
impl<T> Unpin for MinRange<T>where
T: Unpin,
impl<T> UnwindSafe for MinRange<T>where
T: UnwindSafe,
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