1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! An RDF dataset is composed of a default graph,
//! and zero or more named graphs, each associated with a graph name.
//!
//! Another way to look at it is as a collection of [quads](../quad/index.html).
//!
//! This module provides [reusable abstractions](#traits)
//! for different kinds of datasets,
//! as well as a few implementations for them.

#[cfg(any(test, feature = "test_macro"))]
#[macro_use]
pub mod test;

pub mod adapter;
#[macro_use]
pub mod indexed;
pub mod inmem;

mod _ext_impl;
pub use self::_ext_impl::*;
mod _traits;
pub use self::_traits::*;