mod blankid;
mod display;
pub mod generator;
mod grdf;
pub mod interpretation;
pub mod literal;
mod quad;
mod term;
mod triple;
pub mod vocabulary;
#[cfg(feature = "meta")]
pub mod meta;
pub use blankid::*;
pub use display::*;
pub use generator::Generator;
pub use grdf::*;
pub use interpretation::{
BlankIdInterpretation, BlankIdInterpretationMut, IdInterpretation, IdInterpretationMut,
Interpret, Interpretation, InterpretationMut, IriInterpretation, IriInterpretationMut,
LexicalIdInterpretation, LexicalIdInterpretationMut, LexicalTermInterpretation,
LexicalTermInterpretationMut, LiteralInterpretation, LiteralInterpretationMut,
ReverseIdInterpretation, ReverseTermInterpretation, ReverseTermInterpretationMut,
TermInterpretation, TermInterpretationMut,
};
pub use literal::{
IntoLiteral, Literal, MapLiteral, RdfDisplayTypeSeparator, TryExportLiteral,
TryExportLiteralType,
};
pub use quad::*;
pub use term::*;
pub use triple::*;
pub use vocabulary::{
BlankIdVocabulary, BlankIdVocabularyMut, IndexVocabulary, InsertIntoVocabulary,
InsertedIntoVocabulary, IriVocabulary, IriVocabularyMut, LanguageTagVocabulary,
LanguageTagVocabularyMut, LiteralVocabulary, LiteralVocabularyMut, NoVocabulary,
TryExportFromVocabulary, Vocabulary, VocabularyMut,
};
#[cfg(feature = "meta")]
pub use generator::MetaGenerator;
pub trait Namespace {
type Id;
}