[][src]Enum valid::constraint::CharCount

pub enum CharCount {
    Max(usize),
    Min(usize),
    MinMax(usizeusize),
    Exact(usize),
}

The number of characters must be within some bounds.

The validation function can be applied in the FieldName context. It is implemented for all types T that implement the HasCharCount property trait.

Variants

Max(usize)

The number of characters must be less than or equal to the specified maximum

Min(usize)

The number of characters must be greater than or equal to the specified minimum

MinMax(usizeusize)

The number of characters must be between the specified minimum and maximum (inclusive)

Exact(usize)

The number of characters must be equal to the specified amount

Trait Implementations

impl Clone for CharCount[src]

impl Copy for CharCount[src]

impl Debug for CharCount[src]

impl Eq for CharCount[src]

impl PartialEq<CharCount> for CharCount[src]

impl StructuralEq for CharCount[src]

impl StructuralPartialEq for CharCount[src]

impl<T> Validate<CharCount, FieldName> for T where
    T: HasCharCount
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.