[][src]Struct valid::constraint::Digits

pub struct Digits {
    pub integer: u64,
    pub fraction: u64,
}

Maximum number of allowed integer digits and fraction digits.

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

Fields

integer: u64

Maximum number of allowed integer digits (digits to the left of the decimal point)

fraction: u64

Maximum number of allowed fraction digits (digits to the right of the decimal point)

Trait Implementations

impl Clone for Digits[src]

impl Copy for Digits[src]

impl Debug for Digits[src]

impl Eq for Digits[src]

impl PartialEq<Digits> for Digits[src]

impl StructuralEq for Digits[src]

impl StructuralPartialEq for Digits[src]

impl<T> Validate<Digits, FieldName> for T where
    T: HasDecimalDigits
[src]

Auto Trait Implementations

impl RefUnwindSafe for Digits

impl Send for Digits

impl Sync for Digits

impl Unpin for Digits

impl UnwindSafe for Digits

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.