Lines Matching defs:debug
628 // Each of these has the name in the struct type in the derived debug,
633 let mut debug = f.debug_struct("Ident");
634 debug.field("sym", &format_args!("{}", t));
635 imp::debug_span_field_if_nontrivial(&mut debug, t.span().inner);
636 debug.finish()
847 let mut debug = fmt.debug_struct("Punct");
848 debug.field("char", &self.ch);
849 debug.field("spacing", &self.spacing);
850 imp::debug_span_field_if_nontrivial(&mut debug, self.span.inner);
851 debug.finish()