We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
E.g. a crate like this:
#![crate_type="lib"] #![crate_id="test"] pub struct A(int); pub struct B(pub int);
Produces the following signatures:
pub struct A(); pub struct B();
I'd expect them to be something like:
pub struct A ( // some fields omitted ); pub struct B (int);