pub trait FlattenMeta<I, B, M> {
    fn flatten_meta<N, G: Generator<I, B, N, M>>(
        self,
        meta: M,
        vocabulary: &mut N,
        generator: G,
        ordered: bool
    ) -> FlattenResult<I, B, M>
    where
        N: Vocabulary<Iri = I, BlankId = B>
; fn flatten_unordered_meta<N, G: Generator<I, B, N, M>>(
        self,
        meta: M,
        vocabulary: &mut N,
        generator: G
    ) -> FlattenUnorderedResult<I, B, M>; }

Required Methods

Implementors