|
|
@ -1,12 +1,10 @@ |
|
|
|
///! Implements data structures for https://www.w3.org/TR/rdf11-concepts/
|
|
|
|
///! Implements data structures for https://www.w3.org/TR/rdf11-concepts/
|
|
|
|
///! Inspired by [RDFjs](http://rdf.js.org/)
|
|
|
|
///! Inspired by [RDFjs](http://rdf.js.org/)
|
|
|
|
|
|
|
|
|
|
|
|
use std::fmt; |
|
|
|
use std::fmt; |
|
|
|
use std::option::Option; |
|
|
|
use std::option::Option; |
|
|
|
use std::sync::Arc; |
|
|
|
use std::sync::Arc; |
|
|
|
use std::sync::Mutex; |
|
|
|
use std::sync::Mutex; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// A RDF [IRI](https://www.w3.org/TR/rdf11-concepts/#dfn-iri)
|
|
|
|
/// A RDF [IRI](https://www.w3.org/TR/rdf11-concepts/#dfn-iri)
|
|
|
|
#[derive(Eq, PartialEq, Debug, Clone, Hash)] |
|
|
|
#[derive(Eq, PartialEq, Debug, Clone, Hash)] |
|
|
|
pub struct NamedNode { |
|
|
|
pub struct NamedNode { |
|
|
|