rust/src/liballoc
bors 106070b905 Auto merge of #31479 - kamalmarhubi:fmt-pointer-unsized, r=alexcrichton
This allows printing pointers to unsized types with the {:p} formatting
directive. The following impls are extended to unsized types:
 - impl<'a, T: ?Sized> Pointer for &'a T
 - impl<'a, T: ?Sized> Pointer for &'a mut T
 - impl<T: ?Sized> Pointer for *const T
 - impl<T: ?Sized> Pointer for *mut T
 - impl<T: ?Sized> fmt::Pointer for Box<T>
 - impl<T: ?Sized> fmt::Pointer for Rc<T>
 - impl<T: ?Sized> fmt::Pointer for Arc<T>
2016-02-11 01:54:15 +00:00
..
arc.rs Auto merge of #31479 - kamalmarhubi:fmt-pointer-unsized, r=alexcrichton 2016-02-11 01:54:15 +00:00
boxed.rs Implement fmt::Pointer for pointers to unsized types 2016-02-08 14:08:19 -05:00
boxed_test.rs Fix warnings during tests 2016-01-26 09:29:28 -08:00
heap.rs Synthesize calls to box_free language item 2016-02-04 15:56:01 +02:00
lib.rs Fix warnings during tests 2016-01-26 09:29:28 -08:00
oom.rs Add set_oom_handler and use it print a message when out of memory 2016-01-12 01:55:45 +00:00
raw_vec.rs std: Stabilize APIs for the 1.7 release 2016-01-16 11:03:10 -08:00
rc.rs Implement fmt::Pointer for pointers to unsized types 2016-02-08 14:08:19 -05:00