summary refs log tree commit diff
path: root/src/test/rustdoc/issue-35169.rs
AgeCommit message (Collapse)AuthorLines
2017-06-02rustdoc: Hide `self: Box<Self>` in list of deref methodsOliver Middleton-0/+6
These methods can never be called through deref so there is no point including them. For example you can't call `into_boxed_bytes` or `into_string` on `String`.
2016-09-05rustdoc: Filter more incorrect methods inherited through DerefPiotr Jawniak-0/+40
Old code filtered out only static methods. This code also excludes &mut self methods if there is no DerefMut implementation