[][src]Trait verify::Verify

pub trait Verify {
    type Error: Error;
    fn verify(&self) -> Result<(), Self::Error>;
}

This trait is implemented by types that can validate themselves.

Associated Types

type Error: Error

The error returned by the validator.

Loading content...

Required methods

fn verify(&self) -> Result<(), Self::Error>

Validate self internally.

Loading content...

Implementations on Foreign Types

impl Verify for RootSchema[src]

type Error = Errors<Keys>

Loading content...

Implementors

Loading content...