Lines Matching refs:fmt
30 fmt,
915 impl<T: fmt::Display + ?Sized> fmt::Display for UniqueArc<T> {
916 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
917 fmt::Display::fmt(self.deref(), f) in fmt()
921 impl<T: fmt::Display + ?Sized> fmt::Display for Arc<T> {
922 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
923 fmt::Display::fmt(self.deref(), f) in fmt()
927 impl<T: fmt::Debug + ?Sized> fmt::Debug for UniqueArc<T> {
928 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
929 fmt::Debug::fmt(self.deref(), f) in fmt()
933 impl<T: fmt::Debug + ?Sized> fmt::Debug for Arc<T> {
934 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() method
935 fmt::Debug::fmt(self.deref(), f) in fmt()