[][src]Trait yew_bulma::validations::Validatable

pub trait Validatable<T> where
    T: Clone + Default + PartialEq + Debug
{ pub fn is_present(&self) -> PresentValidation<T>;
pub fn is_absent(&self) -> AbsentValidation<T>; }

Required methods

pub fn is_present(&self) -> PresentValidation<T>[src]

pub fn is_absent(&self) -> AbsentValidation<T>[src]

Loading content...

Implementors

impl<T, S> Validatable<T> for S where
    T: Presentable + Clone + Debug,
    S: ValidatableStorage<T>, 
[src]

Loading content...