pub fn parse_size(s: &str) -> Option<u64>Expand description
Parse a human-readable size string into bytes.
Accepts bare number, or number followed by unit letter
(B, K, M, G, T). Case-insensitive. Trims whitespace.
Returns None for invalid or negative input.