mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-27 16:08:39 +01:00
12 lines
191 B
Rust
12 lines
191 B
Rust
#[derive(Debug, Eq, PartialEq, Copy, Clone, Hash)]
|
|
pub enum OutputWrap {
|
|
Character,
|
|
None,
|
|
}
|
|
|
|
impl Default for OutputWrap {
|
|
fn default() -> Self {
|
|
OutputWrap::None
|
|
}
|
|
}
|