[][src]Trait yew_bulma::validations::ValidatorCombinators

pub trait ValidatorCombinators: Sized + Validator {
    pub fn and<U: Validator>(self, other: U) -> AndValidation<Self, U> { ... }
pub fn or<U: Validator>(self, other: U) -> OrValidation<Self, U> { ... } }

Provided methods

pub fn and<U: Validator>(self, other: U) -> AndValidation<Self, U>[src]

pub fn or<U: Validator>(self, other: U) -> OrValidation<Self, U>[src]

Loading content...

Implementors

impl<T> ValidatorCombinators for T where
    T: Validator
[src]

Loading content...