Struct type_rules::rules::MinRange
source · [−]pub struct MinRange<T: PartialOrd<T>>(pub T);
Expand description
Rule to constraint the minimum
range of any type that implement PartialOrd
Works with Option
, just return Ok(())
if it’s None
Example
use type_rules::Validator;
use type_rules::rules::MinRange;
#[derive(Validator)]
struct NonZeroFloat(#[rule(MinRange(1_f32))] f32);
Tuple Fields
0: T
Trait Implementations
sourceimpl<T: PartialOrd<T>> Rule<Option<T>> for MinRange<T>
impl<T: PartialOrd<T>> Rule<Option<T>> for MinRange<T>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more