Trait validator::ValidateArgs

source ·
pub trait ValidateArgs<'v_a> {
    type Args;

    // Required method
    fn validate_with_args(
        &self,
        args: Self::Args
    ) -> Result<(), ValidationErrors>;
}
Expand description

This trait will be implemented by deriving Validate. This implementation can take one argument and pass this on to custom validators. The default Args type will be () if there is no custom validation with defined arguments.

The Args type can use the lifetime 'v_a to pass references onto the validator.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl<'v_a, T, U> ValidateArgs<'v_a> for Option<T>
where T: ValidateArgs<'v_a, Args = U>,

§

type Args = U

source§

fn validate_with_args(&self, args: Self::Args) -> Result<(), ValidationErrors>

Implementors§