blob: a6465e29a02013a9ccd698e37932d8cef957a4f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pub trait PrettyPrinter<'tcx>:
Printer<
'tcx,
Error = fmt::Error,
Path = Self,
Region = Self,
Type = Self,
DynExistential = Self,
Const = Self,
> + fmt::Write
{
//
}
|