Function parse_usize
Source fn parse_usize(key: &str) -> Option<usize>
Expand description
Extracts the env var by key and parses it as a usize
§Arguments
key - Key for the environment variable.
§Returns
Returns an Option<usize> if the value is available.
§Panics
If the value is present, but it is an invalid data-type.