1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-08 06:12:27 +01:00

Add OutputHandle enum to use instead of &mut dyn io::Write

This commit is contained in:
Peter Hebden
2023-07-09 01:08:14 +01:00
committed by David Peter
parent d295b3a394
commit 103a2f0d9b
4 changed files with 107 additions and 52 deletions

View File

@@ -7,6 +7,8 @@ pub enum Error {
#[error(transparent)]
Io(#[from] ::std::io::Error),
#[error(transparent)]
Fmt(#[from] ::std::fmt::Error),
#[error(transparent)]
SyntectError(#[from] ::syntect::Error),
#[error(transparent)]
SyntectLoadingError(#[from] ::syntect::LoadingError),