preflight 0.1.2

A macro to pipe user input through multiple validation functions and iterate over the resulting errors.
docs.rs failed to build preflight-0.1.2
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

preflight

The validate! macro validates a given input with a given set of validation functions and iterate over the errors. For example:

#[macro_use] extern crate preflight;
use preflight::validators::{max_len, url_with_scheme};

let mut errors = Vec::new();

validate![profile_url
    => for err in max_len(265), url_with_scheme(&["http", "https"]) {
        errors.push(format!("profile URL {}", err));
    }
];

In the above example the validate! macro expands to:

if let Err(err) = max_len(profile_url, 265) {
    errors.push(format!("profile URL {}", err));
}
if let Err(err) = url_with_scheme(profile_url, &["http", "https"]) {
    errors.push(format!("profile URL {}", err));
}

Notice how the first expression is automatically passed as the first argument to all listed validation functions.

Since needing to validate values inside Options is very common, this crate also provides a validate_opt! macro:

validate_opt![profile_url, ...];

is equivalent to

if let Some(profile_url) = profile_url {
    validate![profile_url, ...];
}

You can easily define your own validation functions, you just need to return a Result and take the input as the first argument.