For example, rustdoc output for this code only shows a doc for `A` but not for `x` and `y`. ``` .rust #[doc="A"] pub struct A { #[doc="x"] x: int, #[doc="y"] y: ~str } ```