pub trait ValidityStateMethods {
    // Required methods
    fn ValueMissing(&self) -> bool;
    fn TypeMismatch(&self) -> bool;
    fn PatternMismatch(&self) -> bool;
    fn TooLong(&self) -> bool;
    fn TooShort(&self) -> bool;
    fn RangeUnderflow(&self) -> bool;
    fn RangeOverflow(&self) -> bool;
    fn StepMismatch(&self) -> bool;
    fn BadInput(&self) -> bool;
    fn CustomError(&self) -> bool;
    fn Valid(&self) -> bool;
}

Required Methods§

source

fn ValueMissing(&self) -> bool

source

fn TypeMismatch(&self) -> bool

source

fn PatternMismatch(&self) -> bool

source

fn TooLong(&self) -> bool

source

fn TooShort(&self) -> bool

source

fn RangeUnderflow(&self) -> bool

source

fn RangeOverflow(&self) -> bool

source

fn StepMismatch(&self) -> bool

source

fn BadInput(&self) -> bool

source

fn CustomError(&self) -> bool

source

fn Valid(&self) -> bool

Implementors§