Crates.io | linked-data-next |
lib.rs | linked-data-next |
version | |
source | src |
created_at | 2025-02-28 02:46:40.003115+00 |
updated_at | 2025-05-07 16:53:34.29019+00 |
description | Linked-Data dateset serialization/deserialization traits |
homepage | |
repository | https://github.com/luminvent/linked-data-rs |
max_upload_size | |
id | 1572408 |
Cargo.toml error: | TOML parse error at line 22, column 1 | 22 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
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.