mirror of
https://github.com/sharkdp/bat
synced 2026-07-07 14:33: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
|
|
}
|
|
}
|