mirror of
https://github.com/sharkdp/bat.git
synced 2025-01-31 18:21:04 +00:00
12 lines
203 B
Rust
12 lines
203 B
Rust
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
pub enum WrappingMode {
|
|
Character,
|
|
NoWrapping,
|
|
}
|
|
|
|
impl Default for WrappingMode {
|
|
fn default() -> Self {
|
|
WrappingMode::NoWrapping
|
|
}
|
|
}
|