blob: ea7079f6c7309094e3d8e22e5312dedb0503c03e (
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
{
//
}
|