rust/src/librustdoc
bors 2890508d97 Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakis
This is one more step towards completing #13231

This series of commits add support for default trait implementations. The changes in this PR don't break existing code and they are expected to preserve the existing behavior in the compiler as far as built-in bounds checks go.

The PR adds negative implementations of `Send`/`Sync` for some types and it removes the special cases for `Send`/`Sync` during the trait obligations checks. That is, it now fully relies on the traits check rather than lang items.

Once this patch lands and a new snapshot is created, it'll be possible to add default impls for `Send` and `Sync` and remove entirely the use of `BuiltinBound::{BoundSend,BoundSync}` for positive implementations as well.

This PR also removes the restriction on negative implementations. That is, it is now possible to add negative implementations for traits other than `Send`/`Sync`
2015-02-24 02:22:44 +00:00
..
clean Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakis 2015-02-24 02:22:44 +00:00
html Auto merge of #22466 - Kimundi:str_pattern_ai_safe, r=aturon 2015-02-22 22:45:46 +00:00
core.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
doctree.rs Rename DefTrait to DefaultImpl 2015-02-22 02:14:25 +01:00
externalfiles.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
flock.rs Auto merge of #21959 - dhuseby:bitrig-support, r=brson 2015-02-21 09:20:48 +00:00
fold.rs Fix fallout from change, adding explicit Sized annotations where necessary. 2015-01-02 12:06:59 -05:00
lib.rs std: Stabilize the hash module 2015-02-18 08:26:20 -08:00
markdown.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
passes.rs Opt for .cloned() over .map(|x| x.clone()) etc. 2015-02-18 00:56:07 +00:00
plugins.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
stability_summary.rs Count and show the deprecated attribute again 2015-02-15 00:39:37 +02:00
test.rs Fallout from stabilization 2015-02-17 15:14:17 -08:00
visit_ast.rs Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakis 2015-02-24 02:22:44 +00:00