shex_ast 0.2.18

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
#[derive(PartialEq, Eq, Hash, Clone, Copy, Debug, Default)]
pub struct TripleExprIdx(usize);

impl TripleExprIdx {
    pub fn incr(&mut self) {
        self.0 += 1;
    }
}