Lines Matching refs:Display
14 use core::fmt::{self, Debug, Display};
130 impl Display for TokenStream {
133 TokenStream::Compiler(tts) => Display::fmt(&tts.clone().into_token_stream(), f), in fmt()
134 TokenStream::Fallback(tts) => Display::fmt(tts, f), in fmt()
300 impl Display for LexError {
303 LexError::Compiler(e) => Display::fmt(e, f), in fmt()
304 LexError::Fallback(e) => Display::fmt(e, f), in fmt()
307 Display::fmt(&fallback, f) in fmt()
646 impl Display for Group {
649 Group::Compiler(group) => Display::fmt(group, formatter), in fmt()
650 Group::Fallback(group) => Display::fmt(group, formatter), in fmt()
741 impl Display for Ident {
744 Ident::Compiler(t) => Display::fmt(t, f), in fmt()
745 Ident::Fallback(t) => Display::fmt(t, f), in fmt()
959 impl Display for Literal {
962 Literal::Compiler(t) => Display::fmt(t, f), in fmt()
963 Literal::Fallback(t) => Display::fmt(t, f), in fmt()