1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-02-07 21:51:18 +00:00
bat/src/wrap.rs

12 lines
191 B
Rust
Raw Normal View History

#[derive(Debug, Eq, PartialEq, Copy, Clone, Hash)]
pub enum OutputWrap {
Character,
None,
}
impl Default for OutputWrap {
fn default() -> Self {
OutputWrap::None
}
}