Open
Description
For example, AddrParseError
shows up as pub struct AddrParseError(_);
and Ipv4Addr
shows up as pub struct Ipv4Addr { /* fields omitted */ }
I feel like all structs should show up as the latter form if all of the fields are private. It technically doesn't matter that the struct is a tuple struct if the fields are all private. It's not a huge deal but it's an inconsistency that looks off to me.