mirror of
https://github.com/sharkdp/bat.git
synced 2024-12-27 16:58:50 +01:00
ec6e9c29ac
* Bump MSRV to 1.62 Mainly to be able to derive default enum variants. * CHANGELOG.md: Update
8 lines
137 B
Rust
8 lines
137 B
Rust
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq)]
|
|
pub enum PagingMode {
|
|
Always,
|
|
QuitIfOneScreen,
|
|
#[default]
|
|
Never,
|
|
}
|