[][src]Trait yew_bulma::validations::Validator

pub trait Validator: Debug {
    pub fn validate(&self) -> Result<(), ValidationError>;
}

Required methods

Loading content...

Implementors

impl<T> Validator for FormStorage<T> where
    T: Debug + Default + Clone + PartialEq
[src]

impl<T> Validator for AbsentValidation<T> where
    T: Presentable + Debug
[src]

impl<T> Validator for PresentValidation<T> where
    T: Presentable + Debug
[src]

impl<T, U> Validator for AndValidation<T, U> where
    T: Validator + Debug,
    U: Validator + Debug
[src]

impl<T, U> Validator for OrValidation<T, U> where
    T: Validator + Debug,
    U: Validator + Debug
[src]

Loading content...