Lines Matching defs:Debug
5 use core::fmt::{self, Debug, Display};
251 impl Debug for TokenStream {
254 TokenStream::Compiler(tts) => Debug::fmt(&tts.clone().into_token_stream(), f),
255 TokenStream::Fallback(tts) => Debug::fmt(tts, f),
281 impl Debug for LexError {
284 LexError::Compiler(e) => Debug::fmt(e, f),
285 LexError::Fallback(e) => Debug::fmt(e, f),
288 Debug::fmt(&fallback, f)
389 impl Debug for SourceFile {
392 SourceFile::Compiler(a) => Debug::fmt(a, f),
393 SourceFile::Fallback(a) => Debug::fmt(a, f),
528 impl Debug for Span {
531 Span::Compiler(s) => Debug::fmt(s, f),
532 Span::Fallback(s) => Debug::fmt(s, f),
642 impl Debug for Group {
645 Group::Compiler(group) => Debug::fmt(group, formatter),
646 Group::Fallback(group) => Debug::fmt(group, formatter),
739 impl Debug for Ident {
742 Ident::Compiler(t) => Debug::fmt(t, f),
743 Ident::Fallback(t) => Debug::fmt(t, f),
923 impl Debug for Literal {
926 Literal::Compiler(t) => Debug::fmt(t, f),
927 Literal::Fallback(t) => Debug::fmt(t, f),