pub enum FunctionArgValidator {
}Variants§
Finite
NumericOrLogical
Text
Nonempty
ScalarOrEmpty
Real
Integer
Positive
Negative
Nonnegative
Nonzero
Nonpositive
GreaterThanOrEqual(f64)
LessThanOrEqual(f64)
GreaterThan(f64)
LessThan(f64)
Trait Implementations§
Source§impl Clone for FunctionArgValidator
impl Clone for FunctionArgValidator
Source§fn clone(&self) -> FunctionArgValidator
fn clone(&self) -> FunctionArgValidator
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FunctionArgValidator
impl Debug for FunctionArgValidator
Source§impl<'de> Deserialize<'de> for FunctionArgValidator
impl<'de> Deserialize<'de> for FunctionArgValidator
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FunctionArgValidator
impl PartialEq for FunctionArgValidator
Source§fn eq(&self, other: &FunctionArgValidator) -> bool
fn eq(&self, other: &FunctionArgValidator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FunctionArgValidator
impl Serialize for FunctionArgValidator
impl StructuralPartialEq for FunctionArgValidator
Auto Trait Implementations§
impl Freeze for FunctionArgValidator
impl RefUnwindSafe for FunctionArgValidator
impl Send for FunctionArgValidator
impl Sync for FunctionArgValidator
impl Unpin for FunctionArgValidator
impl UnsafeUnpin for FunctionArgValidator
impl UnwindSafe for FunctionArgValidator
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