mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
10 lines
186 B
Rust
10 lines
186 B
Rust
use serde::Deserialize;
|
|
|
|
#[derive(Clone, Copy, Debug, Default, Deserialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub enum Priority {
|
|
Low = 0,
|
|
#[default]
|
|
Normal = 1,
|
|
High = 2,
|
|
}
|