Add a Default implementation for PrettyPrinter

This commit is contained in:
sharkdp 2021-01-09 15:27:28 +01:00 committed by David Peter
parent de6cb75f4b
commit 09fbabb0b8
1 changed files with 6 additions and 0 deletions

View File

@ -320,6 +320,12 @@ impl<'a> PrettyPrinter<'a> {
}
}
impl Default for PrettyPrinter<'_> {
fn default() -> Self {
Self::new()
}
}
/// An input source for the pretty printer.
pub struct Input<'a> {
input: input::Input<'a>,