-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlib.rs
More file actions
88 lines (66 loc) · 1.32 KB
/
lib.rs
File metadata and controls
88 lines (66 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// This is free and unencumbered software released into the public domain.
//! ```rust
//! # use rdf_model::*;
//! ```
#![no_std]
#![deny(unsafe_code)]
#![allow(unused_imports)]
#[doc(hidden)]
pub mod prelude;
mod alloc {
mod heap_quad;
pub use heap_quad::*;
mod heap_term;
pub use heap_term::*;
mod heap_triple;
pub use heap_triple::*;
}
pub use alloc::*;
mod dataset;
pub use dataset::*;
mod document;
pub use document::*;
mod feature;
pub use feature::*;
mod graph;
pub use graph::*;
mod literal;
pub use literal::*;
mod node;
pub use node::*;
mod source;
pub use source::*;
mod statement;
pub use statement::*;
mod term;
pub use term::*;
mod term_kind;
pub use term_kind::*;
mod vocabulary;
pub use vocabulary::*;
mod traits {
mod countable;
pub use countable::*;
mod enumerable;
pub use enumerable::*;
mod maybe_durable;
pub use maybe_durable::*;
mod maybe_indexed;
pub use maybe_indexed::*;
mod maybe_mutable;
pub use maybe_mutable::*;
}
pub use traits::*;
mod providers {
#[cfg(feature = "oxrdf")]
mod oxrdf;
#[cfg(feature = "oxrdf")]
pub use oxrdf::*;
#[cfg(feature = "sophia")]
mod sophia;
#[cfg(feature = "sophia")]
pub use sophia::*;
}
#[doc = include_str!("../../../README.md")]
#[cfg(doctest)]
pub struct ReadmeDoctests;