document_validator 0.2.0

Document validation library
Documentation
1
2
3
4
5
6
7
use std::sync::Arc;

#[derive(Debug, thiserror::Error)]
pub enum Error {
    #[error("Could not parse {0}")]
    ParseError(Arc<str>),
}