Crates.io | linked-data |
lib.rs | linked-data |
version | 0.1.2 |
source | src |
created_at | 2024-03-22 10:59:24.571772 |
updated_at | 2024-03-25 16:24:54.980742 |
description | Linked-Data dateset serialization/deserialization traits |
homepage | |
repository | https://github.com/spruceid/linked-data-rs |
max_upload_size | |
id | 1182528 |
size | 150,784 |
This library provides primitive traits to serialize and deserialize
Linked-Data types. It is shipped with derive macros (using the derive
feature) that can automatically implement those primitives for you.
use iref::IriBuf;
use static_iref::iri;
#[derive(linked_data::Serialize, linked_data::Deserialize)]
#[ld(prefix("ex" = "http://example.org/"))]
struct Foo {
#[ld(id)]
id: IriBuf,
#[ld("ex:name")]
name: String,
#[ld("ex:email")]
email: String
}
let value = Foo {
id: iri!("http://example.org/JohnSmith").to_owned(),
name: "John Smith".to_owned(),
email: "john.smith@example.org".to_owned()
};
let quads = linked_data::to_quads(rdf_types::generator::Blank::new(), &value)
.expect("RDF serialization failed");
for quad in quads {
use rdf_types::RdfDisplay;
println!("{} .", quad.rdf_display())
}
This should print the following:
<http://example.org/JohnSmith> <http://example.org/name> "John Smith" .
<http://example.org/JohnSmith> <http://example.org/email> "john.smith@example.org" .
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.