Lines Matching full:display
33 /// A copy of [`core::fmt::Display`] that allows us to implement it for foreign types.
35 /// Types should implement this trait rather than [`core::fmt::Display`]. Together with the
37 /// core) which do not implement [`core::fmt::Display`] directly.
40 pub trait Display { interface
41 /// Same as [`core::fmt::Display::fmt`].
45 impl<T: ?Sized + Display> Display for &T { impl
47 Display::fmt(*self, f) in fmt()
51 impl<T: ?Sized + Display> core::fmt::Display for Adapter<&T> {
54 Display::fmt(t, f) in fmt()
63 impl$($($generics)*)? Display for $ty $(where $($where)*)? {
65 core::fmt::Display::fmt(self, f)
90 {<T: ?Sized>} crate::sync::Arc<T> {where crate::sync::Arc<T>: core::fmt::Display},
91 {<T: ?Sized>} crate::sync::UniqueArc<T> {where crate::sync::UniqueArc<T>: core::fmt::Display},