/// Size of a `KiB` which is `1024`
pub const KiB: f32 = 1024 as f32;
/// Size of a `MiB` which is `1024 * 1024`
pub const MiB: f32 = KiB * 1024 as f32;
/// Size of a `GiB` which is `1024 * 1024 * 1024`
pub const GiB: f32 = MiB * 1024 as f32;
/// Size of a `TiB` which is `1024 * 1024 * 1024 * 1024`
pub const TiB: f32 = GiB * 1024 as f32;
/// Size of a `PiB` which is `1024 * 1024 * 1024 * 1024 * 1024`
pub const PiB: f32 = TiB * 1024 as f32;
/// Size of a `EiB` which is `1024 * 1024 * 1024 * 1024 * 1024 * 1024`
pub const EiB: f32 = PiB * 1024 as f32;
//#[allow(non_upper_case_globals)]
//pub const ZiB: u128 = EiB * 1024 as f32;
//#[allow(non_upper_case_globals)]
//pub const YiB: u128 = ZiB * 1024 as f32;