rudof_lib 0.2.20-rc.1

RDF data shapes implementation in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! The `api` module provides operation-specific submodules that constitute the Rudof builder pattern API.
//!
//! Each submodule contains traits and builders for a specific domain (like RDF data, SHACL, ShEx, SPARQL queries),
//! separating concerns while keeping the main [`crate::Rudof`] struct cohesive.

pub mod comparison;
pub mod conversion;
pub mod core;
pub mod data;
pub mod dctap;
pub mod generation;
pub mod map_state;
pub mod materialize;
pub mod pgschema;
pub mod query;
pub mod rdf_config;
pub mod shacl;
pub mod shex;