Enum fkl_parser::mir::implementation::validation::Validation
source · [−]pub enum Validation {
None,
Required(bool),
Range(RangeValidation),
Length(LengthValidation),
Regex(RegexValidation),
Compare(CompareValidation),
}
Variants
None
Required(bool)
Range(RangeValidation)
Length(LengthValidation)
Regex(RegexValidation)
Compare(CompareValidation)
Trait Implementations
sourceimpl Clone for Validation
impl Clone for Validation
sourcefn clone(&self) -> Validation
fn clone(&self) -> Validation
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for Validation
impl Debug for Validation
sourceimpl Default for Validation
impl Default for Validation
sourceimpl<'de> Deserialize<'de> for Validation
impl<'de> Deserialize<'de> for Validation
sourcefn 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
sourceimpl PartialEq<Validation> for Validation
impl PartialEq<Validation> for Validation
sourcefn eq(&self, other: &Validation) -> bool
fn eq(&self, other: &Validation) -> bool
sourceimpl Serialize for Validation
impl Serialize for Validation
impl Eq for Validation
impl StructuralEq for Validation
impl StructuralPartialEq for Validation
Auto Trait Implementations
impl RefUnwindSafe for Validation
impl Send for Validation
impl Sync for Validation
impl Unpin for Validation
impl UnwindSafe for Validation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.