Closed
Description
The Path documentation provides a good case-in-point. The struct for Path
is being rendered as
pub struct Path {
// some fields omitted
}
when it could be rendered as
pub struct Path {
// all fields omitted
}
since there are no fields which have not been emitted. It just feels like an understatement when it says "some" fields have been omitted, and there are no fields being shown at all.