pub trait GlobTypes {
type Name: TypeName;
type Pattern: TypePattern;
// Required method
fn store(&self) -> &Store<Self::Name, Self::Pattern>;
}pub trait GlobTypes {
type Name: TypeName;
type Pattern: TypePattern;
// Required method
fn store(&self) -> &Store<Self::Name, Self::Pattern>;
}