2 releases

Uses old Rust 2015

0.1.1 Sep 18, 2017
0.1.0 Sep 17, 2017

#45 in #whether

MIT license

12KB
264 lines

Gild

Gild is a simple validation library in Rust, you can chain multiple conditions and check whether the input is valid. You can also write your own validators, if our set of validator conditions isn't enough.

Using it is as easy as this:


ValidationChain::new()
    .add(validators::MaxSize::new(1)) // false
    .add(validators::MinSize::new(5)) // true
    .validate(String::from("Hello, World"))
    .is_ok();

Writing custom rules

We make use of Rust's great typesystem to create custom validators

struct MyCustomValidator;

impl ValidatorCondition for MyCustomValidator {
    fn validate(&self, input: String) -> bool {
        if input == String::from("cool") {
            return true
        }

        return false
    }

    fn get_err_message(&self) -> String {
        format!("Input is not cool...")
    }
}

If you wrote a validator that you think the community might want to use, feel free to open a PR

Validation rules

We currently have a small set of rules available:

  • MaxSize
  • MinSize
  • Contains
  • Empty
  • NotContains

Dependencies

~3.5MB
~72K SLoC