Closed
Description
Serde's Deserialize
and Serialize
traits don't show up in the "Trait Implementations" section for types that use custom derive through Macros 1.1 or through Syntex. Alex Crichton also notes that rustdoc does not display Copy
in the "Trait Implementations" section with the following code:
#[derive(Clone)]
pub struct Point {
x: i32,
y: i32,
}
const _FOO: () = {
impl Copy for Point {}
()
};
I've only tested this on nightly Rust.