kinetics 0.15.1

Kinetics is a hosting platform for Rust applications that allows you to deploy all types of workloads by writing **only Rust code**.
Documentation
1
2
3
4
5
/// Validate fields of a http request struct
pub trait Validate {
    /// Returns vector of errors or None if all valid
    fn validate(&self) -> Option<Vec<String>>;
}