gears 0.1.7

Gears core implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use validation::common::ValidationError;
use structure::page::PageDocument;

#[derive(Debug)]
pub struct Validation {}

impl Validation {
    pub fn validate(page: &PageDocument) -> Vec<ValidationError> {
        let errors = Vec::<ValidationError>::new();

        errors
    }
}