![Latest Release] ![Documentation] ![License] ![Linux Build Status] ![Windows Build Status] ![Test Coverage] ![Rustc Version 1.35+]
Let the business logic only accept valid values!
Validate custom types by composing primitive validation functions.
Use one common API for validating all kind of business rules including aspects of the application state.
One common error type for all kind of constraint validations. It is designed to help with error messages that are meaningful to the user of an application.
valid
is a validation library for the [Rust] language. It let us write validation functions for
our custom types through composition of available validators. Any custom written validation function
again can be used to build validations for even more complex types.
The valid
crate defines the types and traits to implement validation functions and use them to
validate our values. Additionally it defines primitive constraints.
Most primitive constraints validate one property of the validated type. E.g. the Length
constraint
validates the length property of strings, container types or slices. If the constraint property is
not covered by a trait of the std-lib, a related trait is defined, which we call a property trait.
The builtin constraints are implemented for generic types T
that implement the related property
trait.
One goal of valid
is to provide one common API that can be used to validate all kind of business
rules. Constraints are grouped into one of 3 categories:
Any violation of constraints are returned in one common error type, regardless of the category of the business rule that defines the constraint.
One principle for the core functionality of this crate is to have no dependencies other than
the std-lib. Support for types of 3rd party crates such as [bigdecimal
] and [chrono
] are
implemented as optional crate features. So you can pick and choose which types you need in your
application and which dependencies you will have in your project.
Length
, CharCount
, Bound
and MustMatch
ValidationError
is designed to help with composing detailed and helpful error messages ValidationError
implements std::error::Error
and can be used with the
[failure
] crateValidationError
through [serde
] (optional crate feature
[serde1])BigDecimal
of the [bigdecimal
] crate (optional crate feature [bigdecimal])DateTime
and NaiveDate
of the [chrono
] crate (optional crate feature [chrono])valid
provides some of its functionality as optional crate features. To use it we must enable the
relevant crate feature in our Cargo.toml
file.
Serialization and deserialization of ValdiationError
through the [serde
] crate:
toml
[dependencies]
valid = { version = "0.1", features = ["serde1"] }
Support for validating BigDecimal
of the [bigdecimal
] crate:
toml
[dependencies]
valid = { version = "0.1", features = ["bigdecimal"] }
Support for validating NaiveDate
and DateTime
of the [chrono
] crate:
toml
[dependencies]
valid = { version = "0.1", features = ["chrono"] }
Theses crate features can be enabled in any combination. For detailed information on how to use
[valid
] see the API documentation at docs.rs.