pub trait LinkedDataDeserializePredicateObjects<I: Interpretation = (), V: Vocabulary = ()>: Sized {
// Required method
fn deserialize_objects_in<'a, D>(
vocabulary: &V,
interpretation: &I,
dataset: &D,
graph: Option<&I::Resource>,
objects: impl IntoIterator<Item = &'a I::Resource>,
context: Context<'_, I>
) -> Result<Self, FromLinkedDataError>
where I::Resource: 'a,
D: PatternMatchingDataset<Resource = I::Resource>;
// Provided method
fn deserialize_objects<'a, D>(
vocabulary: &V,
interpretation: &I,
dataset: &D,
graph: Option<&I::Resource>,
objects: impl IntoIterator<Item = &'a I::Resource>
) -> Result<Self, FromLinkedDataError>
where I::Resource: 'a,
D: PatternMatchingDataset<Resource = I::Resource> { ... }
}
Required Methods§
fn deserialize_objects_in<'a, D>( vocabulary: &V, interpretation: &I, dataset: &D, graph: Option<&I::Resource>, objects: impl IntoIterator<Item = &'a I::Resource>, context: Context<'_, I> ) -> Result<Self, FromLinkedDataError>
Provided Methods§
fn deserialize_objects<'a, D>( vocabulary: &V, interpretation: &I, dataset: &D, graph: Option<&I::Resource>, objects: impl IntoIterator<Item = &'a I::Resource> ) -> Result<Self, FromLinkedDataError>
Object Safety§
This trait is not object safe.