We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. given:
// foo.rs pub struct Foo<A> where A: Copy; pub struct Foo_<A: Copy>;
// bar.rs extern crate foo; pub use foo::{Foo, Foo_};
rustdoc will show the bound on bar::Foo_ but not on bar::Foo.
bar::Foo_
bar::Foo
The text was updated successfully, but these errors were encountered:
cc me, may check this out in between compiles
Sorry, something went wrong.
As an example of this, compare:
http://doc.rust-lang.org/std/slice/trait.SliceExt.html#tymethod.binary_search_by http://doc.rust-lang.org/core/slice/trait.SliceExt.html#tymethod.binary_search_by
8a69d35
impl
No branches or pull requests
e.g. given:
rustdoc will show the bound on
bar::Foo_
but not onbar::Foo
.The text was updated successfully, but these errors were encountered: