14 lines
234 B
Rust
14 lines
234 B
Rust
|
pub trait PrettyPrinter<'tcx>:
|
||
|
Printer<
|
||
|
'tcx,
|
||
|
Error = fmt::Error,
|
||
|
Path = Self,
|
||
|
Region = Self,
|
||
|
Type = Self,
|
||
|
DynExistential = Self,
|
||
|
Const = Self,
|
||
|
> + fmt::Write
|
||
|
{
|
||
|
//
|
||
|
}
|