Hi! Is it hard to implement some way to access symbol from UDA constructor of symbol? ``` class uda { this() { // Iterate by Foo members foreach (member; __traits(allMembers, __SYMBOL__)) ... } } @uda struct Foo { } ```