rustbasic-core 0.1.25

Core framework logic for RustBasic - A modern web framework for Rust
Documentation
1
2
3
4
5
use std::collections::HashMap;

pub trait Validate {
    fn validate(&self) -> Result<(), HashMap<String, String>>;
}