[][src]Trait semval::IntoValidated

pub trait IntoValidated<V: Validate> {
    pub fn into_validated(self) -> ValidatedResult<V>;
}

Value-to-value conversion with post-validation of the output value

Prefer to implement ValidatedFrom for types inside the current crate. All types that implement ValidatedFrom implicitly implement this trait.

Required methods

pub fn into_validated(self) -> ValidatedResult<V>[src]

Convert self into output value and validate the output

Loading content...

Implementors

impl<T, V> IntoValidated<V> for T where
    V: ValidatedFrom<T>, 
[src]

Loading content...