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

Subject identifier generator.

Required Methods

Generates the next fresh identifier in the given vocabulary.

Implementations on Foreign Types

Implementors