Closed
Description
Rust has no concept of methods. Distinguishing between these makes no sense and is an artifact of how rustdoc represents these internally - consider for example the ambiguous case
pub struct Foo {}
impl Foo {
pub fn bar() {}
}
We should remove this distinction before the format is stabilized.