mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-07 21:51:18 +00: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
|
||
|
}
|
||
|
}
|