Files
rust/src/libcoretest
Kamal Marhubi c5f73ed80c Implement fmt::Pointer for pointers to unsized types
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-08 14:08:19 -05:00
..
2016-01-14 23:02:32 -08:00
2015-08-17 19:35:52 -07:00
2015-09-20 11:37:08 +01:00
2015-10-16 21:15:23 +02:00
2015-03-26 12:10:22 -07:00
2015-03-26 12:10:22 -07:00