pub fn size_human_2_size_bytes(s: &str) -> u64Expand description
Convert human readable size string into integer size in bytes.
Following rules of IEC binary prefixes on size. Supported size string formats:
1.9KiBgets(1024 * 1.9) as u64.1 KiBgets1 * (1 << 10).1Bgets1u64.2Kis the same as2KiB.2kis the same as2KiB.2KBgets2 * 1000.
Return 0 if error.