alpm_types/
size.rs

1/// Compressed size of a file (in bytes)
2///
3/// This is a type alias for [`u64`].
4///
5/// ## Examples
6/// ```
7/// use std::{num::IntErrorKind, str::FromStr};
8///
9/// use alpm_types::{CompressedSize, Error};
10///
11/// assert_eq!(CompressedSize::from_str("1"), Ok(1));
12/// assert!(CompressedSize::from_str("-1").is_err());
13/// ```
14pub type CompressedSize = u64;
15
16/// Installed size of a package (in bytes)
17///
18/// This is a type alias for [`u64`].
19///
20/// ## Examples
21/// ```
22/// use std::{num::IntErrorKind, str::FromStr};
23///
24/// use alpm_types::{Error, InstalledSize};
25///
26/// // create InstalledSize from &str
27/// assert_eq!(InstalledSize::from_str("1"), Ok(1));
28/// assert!(InstalledSize::from_str("-1").is_err());
29/// ```
30pub type InstalledSize = u64;