mirror of
https://github.com/nushell/nushell.git
synced 2024-12-14 03:02:05 +01:00
28 lines
392 B
Rust
28 lines
392 B
Rust
#[derive(Debug, Clone, Copy)]
|
|
pub enum Unit {
|
|
// Filesize units: metric
|
|
Byte,
|
|
Kilobyte,
|
|
Megabyte,
|
|
Gigabyte,
|
|
Terabyte,
|
|
Petabyte,
|
|
|
|
// Filesize units: ISO/IEC 80000
|
|
Kibibyte,
|
|
Mebibyte,
|
|
Gibibyte,
|
|
Tebibyte,
|
|
Pebibyte,
|
|
|
|
// Duration units
|
|
Nanosecond,
|
|
Microsecond,
|
|
Millisecond,
|
|
Second,
|
|
Minute,
|
|
Hour,
|
|
Day,
|
|
Week,
|
|
}
|