shapes_converter 0.1.1

RDF data shapes implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, PartialEq, Clone, Default)]
pub enum Cardinality {
    #[default]
    OneOne,

    Star,
    Plus,
    Optional,
    Range(i32, i32),
    Fixed(i32),
}