Someone figured out how to do it and put it in std.traits! ;-)
Example: ``` import std.stdio; import core.thread; import std.traits; void main() { Fields!Thread[11] a; writeln(typeid(a)); } ```This prints "core.thread.Thread.Context" , which is a private struct type of core.thread.Thread.
Success! :-) -Johan