pub trait LinkedDataDeserialize<V: Vocabulary = (), I: Interpretation = ()>: Sized {
    // Required method
    fn deserialize_dataset_in(
        vocabulary: &V,
        interpretation: &I,
        dataset: &(impl TraversableDataset<Resource = I::Resource> + PatternMatchingDataset),
        context: Context<'_, I>
    ) -> Result<Self, FromLinkedDataError>;

    // Provided method
    fn deserialize_dataset(
        vocabulary: &V,
        interpretation: &I,
        dataset: &(impl TraversableDataset<Resource = I::Resource> + PatternMatchingDataset)
    ) -> Result<Self, FromLinkedDataError> { ... }
}

Required Methods§

source

fn deserialize_dataset_in( vocabulary: &V, interpretation: &I, dataset: &(impl TraversableDataset<Resource = I::Resource> + PatternMatchingDataset), context: Context<'_, I> ) -> Result<Self, FromLinkedDataError>

Provided Methods§

source

fn deserialize_dataset( vocabulary: &V, interpretation: &I, dataset: &(impl TraversableDataset<Resource = I::Resource> + PatternMatchingDataset) ) -> Result<Self, FromLinkedDataError>

Object Safety§

This trait is not object safe.

Implementors§