Docs.rs
  • linked-data-0.1.0
    • linked-data 0.1.0
    • Docs.rs crate page
    • MIT/Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • timothee-haudebourg
    • Dependencies
      • educe ^0.4.22 normal
      • im ^15.1.0 normal
      • iref ^3.0 normal
      • json-syntax ^0.12.2 normal
      • linked-data-derive ^0.1.0 normal optional
      • rdf-types ^0.22.0 normal
      • serde ^1.0 normal optional
      • static-iref ^3.0 normal
      • thiserror ^1.0.47 normal
      • xsd-types ^0.9.2 normal
      • json-syntax ^0.12.2 dev
    • Versions
    • 34.55% of the crate is documented
  • This release has been yanked, go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

linked_data0.1.0

?
Change settings

Function linked_data::to_interpreted_graph_quads

source ·
pub fn to_interpreted_graph_quads<I, V>(
    vocabulary: &mut V,
    interpretation: &mut I,
    value: &(impl LinkedDataGraph<I, V> + LinkedDataResource<I, V>)
) -> Result<(I::Resource, Vec<InterpretedQuad<I>>), IntoQuadsError>
where I: InterpretationMut<V> + IriInterpretationMut<V::Iri> + BlankIdInterpretationMut<V::BlankId> + LiteralInterpretationMut<V::Literal> + Interpretation, I::Resource: Clone, V: IriVocabularyMut + LiteralVocabularyMut + Vocabulary, V::Iri: Clone, V::BlankId: Clone,