rust/src/libcoretest
Alex Crichton 70f7165cc8 std: Stabilize TypeId and tweak BoxAny
This commit aims to stabilize the `TypeId` abstraction by moving it out of the
`intrinsics` module into the `any` module of the standard library. Specifically,

* `TypeId` is now defined at `std::any::TypeId`
* `TypeId::hash` has been removed in favor of an implementation of `Hash`.

This commit also performs a final pass over the `any` module, confirming the
following:

* `Any::get_type_id` remains unstable as *usage* of the `Any` trait will likely
  never require this, and the `Any` trait does not need to be implemented for
  any other types. As a result, this implementation detail can remain unstable
  until associated statics are implemented.
* `Any::downcast_ref` is now stable
* `Any::downcast_mut` is now stable
* `BoxAny` remains unstable. While a direct impl on `Box<Any>` is allowed today
  it does not allow downcasting of trait objects like `Box<Any + Send>` (those
  returned from `Thread::join`). This is covered by #18737.
* `BoxAny::downcast` is now stable.
2015-01-18 18:29:22 -08:00
..
fmt
hash Test fixes and rebase conflicts 2015-01-07 19:27:27 -08:00
num
any.rs fix the &mut _ patterns 2015-01-07 19:26:36 -05:00
atomic.rs Rename AtomicInt and AtomicUint 2015-01-11 11:47:44 -08:00
cell.rs Improvements to feature staging 2015-01-08 03:07:23 -08:00
char.rs cleanup: &foo[0..a] -> &foo[..a] 2015-01-12 17:59:37 -05:00
clone.rs
cmp.rs
finally.rs
intrinsics.rs std: Stabilize TypeId and tweak BoxAny 2015-01-18 18:29:22 -08:00
iter.rs cleanup: &foo[0..a] -> &foo[..a] 2015-01-12 17:59:37 -05:00
lib.rs Set allow(unstable) in crates that use unstable features 2015-01-17 16:38:04 -08:00
mem.rs Generalise pointer width tests using pointer_width 2015-01-13 18:59:45 -08:00
nonzero.rs
ops.rs
option.rs
ptr.rs
result.rs Test fixes and rebase conflicts 2015-01-07 19:27:27 -08:00
slice.rs use slicing sugar 2015-01-07 17:35:56 -05:00
str.rs
tuple.rs