rust/src/libcore/fmt
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
..
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 Auto merge of #31479 - kamalmarhubi:fmt-pointer-unsized, r=alexcrichton 2016-02-11 01:54:15 +00:00
num.rs std: Stabilize APIs for the 1.7 release 2016-01-16 11:03:10 -08:00