[][src]Trait semval::IsValid

pub trait IsValid {
    pub fn is_valid(&self) -> bool;
}

A utility trait for boolean validity checks.

Required methods

pub fn is_valid(&self) -> bool[src]

Check if this instance is valid, discarding all further information why if not.

Loading content...

Implementors

impl<T> IsValid for T where
    T: Validate
[src]

Loading content...