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
//! Dublin Core Terms (`http://purl.org/dc/terms/`). use super::node; use oxigraph::model::NamedNode; /// Namespace IRI. pub const NS: &str = "http://purl.org/dc/terms/"; /// `dcterms:title`. #[must_use] pub fn title() -> NamedNode { node("http://purl.org/dc/terms/title") } /// `dcterms:creator`. #[must_use] pub fn creator() -> NamedNode { node("http://purl.org/dc/terms/creator") } /// `dcterms:description`. #[must_use] pub fn description() -> NamedNode { node("http://purl.org/dc/terms/description") }