memory_size_type/lib.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
//! # Memory Size Type
//!
//! This crate implements a data type (`MemorySize`) for strongly typed memory size indications.
//!
//! There is support for memory units with a base of 10 (as recommended by the International
//! Electrotechnical Commission). A support for memory units with the base of 2 (as standardized
//! by IEC 80000-13) will follow soon.
#![doc(html_root_url = "https://docs.rs/memory-size-type/latest")]
#![cfg_attr(not(feature = "std"), no_std)]
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
/// The structure for representing a specific number of bytes.
pub struct Byte(u64);
/// The structure for representing a specific number of bytes.
pub type Bytes = Byte;
impl From<u64> for Byte {
/// Get a byte representation from a u64 number.
///
/// # Example
/// ```
/// use memory_size_type::Byte;
///
/// let some_bytes = Byte::from(256);
/// ```
fn from(value: u64) -> Self {
Byte(value)
}
}
#[cfg(feature = "std")]
impl std::ops::Add for Byte {
type Output = Byte;
/// Performs the `+` operation on a byte.
///
/// # Example
///
/// ```
/// use memory_size_type::Byte;
///
/// let some_bytes = Byte::from(256);
/// let some_more_bytes = Byte::from(256);
/// assert_eq!((some_bytes + some_more_bytes).to_string(), "512 bytes");
/// ```
fn add(self, rhs: Self) -> Self::Output {
Byte(self.0 + rhs.0)
}
}
#[cfg(feature = "std")]
impl std::fmt::Display for Byte {
/// Formats the represented byte value using the given formatter.
///
/// # Example
/// ```
/// use memory_size_type::Byte;
///
/// let one_byte = Byte::from(1);
/// let several_bytes = Byte::from(256);
///
/// assert_eq!("1 byte", format!("{}", one_byte));
/// assert_eq!("256 bytes", format!("{}", several_bytes));
/// ```
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if self.0 == 1 {
return write!(f, "{} byte", self.0);
}
write!(f, "{} bytes", self.0)
}
}
#[cfg(feature = "std")]
impl std::fmt::Debug for Byte {
/// Formats the represented byte value using the given formatter in a programmer-facing,
/// debugging context.
///
/// # Example
/// ```
/// use memory_size_type::Byte;
///
/// let one_byte = Byte::from(1);
/// let several_bytes = Byte::from(256);
///
/// assert_eq!("1 byte", format!("{}", one_byte));
/// assert_eq!("256 bytes", format!("{}", several_bytes));
/// ```
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if self.0 == 1 {
return write!(f, "{} byte", self.0);
}
write!(f, "{} bytes", self.0)
}
}
/// The structure for representing a specific number of kibibytes (1 kibibyte = 1024 bytes).
pub struct Kibibyte(u64);
/// The structure for representing a specific number of kibibytes (1 kibibyte = 1024 bytes).
pub type Kibibytes = Kibibyte;
impl From<u64> for Kibibyte {
/// Get a kibibyte representation from a u64 number representing the number of kibibytes.
///
/// # Example
/// ```
/// use memory_size_type::Kibibyte;
///
/// let some_bytes = Kibibyte::from(256);
/// ```
fn from(value: u64) -> Self {
Kibibyte(value)
}
}
impl From<Byte> for Kibibyte {
/// Get a kibibyte representation from a Byte representation.
///
/// # Example
/// ```
/// use memory_size_type::{Kibibyte, Byte};
///
/// let some_kibibytes = Kibibyte::from(Byte::from(256));
/// ```
fn from(value: Byte) -> Self {
const KIBIBYTES_PER_BYTE: u64 = 1024;
Kibibyte(value.0 * KIBIBYTES_PER_BYTE)
}
}
#[cfg(feature = "std")]
impl std::ops::Add for Kibibyte {
type Output = Kibibyte;
/// Performs the `+` operation on a byte.
///
/// # Example
///
/// ```
/// use memory_size_type::Kibibyte;
///
/// let some_kibibytes = Kibibyte::from(256);
/// let some_more_kibibytes = Kibibyte::from(256);
/// assert_eq!((some_kibibytes + some_more_kibibytes).to_string(), "512 kibibytes");
/// ```
fn add(self, rhs: Self) -> Self::Output {
Kibibyte(self.0 + rhs.0)
}
}
#[cfg(feature = "std")]
impl std::fmt::Display for Kibibyte {
/// Formats the represented kibibyte value using the given formatter.
///
/// # Example
/// ```
/// use memory_size_type::Kibibyte;
///
/// let one_kibibyte = Kibibyte::from(1);
/// let several_kibibytes = Kibibyte::from(256);
///
/// assert_eq!("1 kibibyte", format!("{}", one_kibibyte));
/// assert_eq!("256 kibibytes", format!("{}", several_kibibytes));
/// ```
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if self.0 == 1 {
return write!(f, "{} kibibyte", self.0);
}
write!(f, "{} kibibytes", self.0)
}
}
#[cfg(feature = "std")]
impl std::fmt::Debug for Kibibyte {
/// Formats the represented kibibyte value using the given formatter in a programmer-facing,
/// debugging context.
///
/// # Example
/// ```
/// use memory_size_type::Kibibyte;
///
/// let one_kibibyte = Kibibyte::from(1);
/// let several_kibibytes = Kibibyte::from(256);
///
/// assert_eq!("1 kibibyte", format!("{}", one_kibibyte));
/// assert_eq!("256 kibibytes", format!("{}", several_kibibytes));
/// ```
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
if self.0 == 1 {
return write!(f, "{} kibibyte", self.0);
}
write!(f, "{} kibibytes", self.0)
}
}