pub struct Unscoped<'a, G>(pub &'a mut G);Expand description
Wrapper around a generator to work with vocabulary::Scoped.
Any generator for some vocabulary V can be wrapped around Unscoped to
work with vocabulary::Scoped<V>.
As the name implies, the identifier generated by such generator will
escape the scope of vocabulary::Scoped. This means that a collision can
still occur if multiple generators are used on the same vocabulary, even
wrapped inside different vocabulary::Scoped.
Tuple Fields§
§0: &'a mut G