pub trait Generator<I, B, N, M> {
    fn next(&mut self, vocabulary: &mut N) -> Meta<Subject<I, B>, M>;
}
Expand description

Subject identifier generator, with metadata.

Required Methods

Implementations on Foreign Types

Implementors