rust/src/libcore/fmt
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
..
rt rustfmt part of libcore/fmt 2015-10-08 01:02:45 +03:00
builders.rs std: Stabilize APIs for the 1.7 release 2016-01-16 11:03:10 -08:00
mod.rs Implement fmt::Pointer for pointers to unsized types 2016-02-08 14:08:19 -05:00
num.rs std: Stabilize APIs for the 1.7 release 2016-01-16 11:03:10 -08:00