Lines Matching refs:Debug
14 use core::fmt::{self, Debug, Display};
257 impl Debug for TokenStream {
260 TokenStream::Compiler(tts) => Debug::fmt(&tts.clone().into_token_stream(), f), in fmt()
261 TokenStream::Fallback(tts) => Debug::fmt(tts, f), in fmt()
287 impl Debug for LexError {
290 LexError::Compiler(e) => Debug::fmt(e, f), in fmt()
291 LexError::Fallback(e) => Debug::fmt(e, f), in fmt()
294 Debug::fmt(&fallback, f) in fmt()
541 impl Debug for Span {
544 Span::Compiler(s) => Debug::fmt(s, f), in fmt()
545 Span::Fallback(s) => Debug::fmt(s, f), in fmt()
655 impl Debug for Group {
658 Group::Compiler(group) => Debug::fmt(group, formatter), in fmt()
659 Group::Fallback(group) => Debug::fmt(group, formatter), in fmt()
750 impl Debug for Ident {
753 Ident::Compiler(t) => Debug::fmt(t, f), in fmt()
754 Ident::Fallback(t) => Debug::fmt(t, f), in fmt()
968 impl Debug for Literal {
971 Literal::Compiler(t) => Debug::fmt(t, f), in fmt()
972 Literal::Fallback(t) => Debug::fmt(t, f), in fmt()