pub type InstalledSize = u64;
Installed size of a package (in bytes)
This is a type alias for u64.
u64
use std::{num::IntErrorKind, str::FromStr}; use alpm_types::{Error, InstalledSize}; // create InstalledSize from &str assert_eq!(InstalledSize::from_str("1"), Ok(1)); assert!(InstalledSize::from_str("-1").is_err());