Lines Matching refs:Display
171 use core::fmt::{self, Debug, Display};
312 impl Display for TokenStream {
314 Display::fmt(&self.inner, f) in fmt()
337 impl Display for LexError {
339 Display::fmt(&self.inner, f) in fmt()
601 impl Display for TokenTree {
604 TokenTree::Group(t) => Display::fmt(t, f), in fmt()
605 TokenTree::Ident(t) => Display::fmt(t, f), in fmt()
606 TokenTree::Punct(t) => Display::fmt(t, f), in fmt()
607 TokenTree::Literal(t) => Display::fmt(t, f), in fmt()
759 impl Display for Group {
761 Display::fmt(&self.inner, formatter) in fmt()
844 impl Display for Punct {
846 Display::fmt(&self.ch, f) in fmt()
1040 impl Display for Ident {
1042 Display::fmt(&self.inner, f) in fmt()
1297 impl Display for Literal {
1299 Display::fmt(&self.inner, f) in fmt()