shex_ast 0.2.15

RDF data shapes implementation in Rust
Documentation
use rudof_iri::IriS;
use prefixmap::PrefixMap;
use shex_ast::ShapeExpr;

pub struct ParserState {
    base: Option<IriS>,
    prefixmap: PrefixMap,
    start: Option<ShapeExpr>,
}

impl Default for ParserState {
    fn default() -> Self {
        Self {
            base: None,
            prefixmap: PrefixMap::default(),
            start: None,
        }
    }
}