rdftk_io 0.3.3

This crate provides traits for reading and writing Statements and Graphs as well as implementations of these for common representations.
Documentation
1
2
3
4
5
6
7
8
9
10
pub(super) const OBJ_KEY_VALUE: &str = "value";
pub(super) const OBJ_KEY_TYPE: &str = "type";
pub(super) const OBJ_KEY_LANG: &str = "lang";
pub(super) const OBJ_KEY_DATATYPE: &str = "datatype";

pub(super) const OBJ_TYPE_BNODE: &str = "bnode";
pub(super) const OBJ_TYPE_URI: &str = "uri";
pub(super) const OBJ_TYPE_LITERAL: &str = "literal";

pub(super) const BNODE_PREFIX: &str = "_:";