pub trait CompactIndexedFragment<I, B, M> {
    fn compact_indexed_fragment<'a, N, C, L: Loader<I, M> + ContextLoader<I, M>>(
        &'a self,
        vocabulary: &'a mut N,
        meta: &'a M,
        index: Option<&'a Entry<String, M>>,
        active_context: &'a Context<I, B, C, M>,
        type_scoped_context: &'a Context<I, B, C, M>,
        active_property: Option<Meta<&'a str, &'a M>>,
        loader: &'a mut L,
        options: Options
    ) -> BoxFuture<'a, CompactFragmentResult<I, M, L>>
    where
        N: Send + Sync + VocabularyMut<Iri = I, BlankId = B>,
        I: Clone + Hash + Eq + Send + Sync,
        B: Clone + Hash + Eq + Send + Sync,
        M: Clone + Send + Sync,
        C: ProcessMeta<I, B, M>,
        L: Send + Sync,
        L::Context: Into<C>
; }
Expand description

Type that can be compacted with an index.

Required Methods

Implementors