Lines Matching refs:Display
18 use core::fmt::{self, Debug, Display, Write};
212 impl Display for LexError {
218 impl Display for TokenStream {
227 TokenTree::Group(tt) => Display::fmt(tt, f), in fmt()
228 TokenTree::Ident(tt) => Display::fmt(tt, f), in fmt()
231 Display::fmt(tt, f) in fmt()
233 TokenTree::Literal(tt) => Display::fmt(tt, f), in fmt()
738 impl Display for Group {
755 Display::fmt(&self.stream, f)?; in fmt()
889 impl Display for Ident {
894 Display::fmt(&self.sym, f) in fmt()
1178 impl Display for Literal {
1180 Display::fmt(&self.repr, f) in fmt()